最新的Tableau Certified Data Analyst (TDA-C01日本語版) - TDA-C01日本語免費考試真題

問題1
次の地図があります。

次の視覚化に示すようにマップを表示する必要があります。
何をすべきでしょうか?

正確答案: A
說明:(僅 VCESoft 成員可見)
問題2
ワークシートには次の計算フィールドがあります。
[Calc1] = DATEADD ('年', -1, TODAY())
[Calc2] = DATETRUNC ( '月' , DATEADD ( '年' , -1, TODAY ())
前年の月初から現在までの値を計算します。
どのように数式を完成させればよいでしょうか? (適切なオプションを回答領域にドラッグし、正しい場所にドロップします。)
正確答案:
To calculate the month to date value of the prior year, you need to filter the order date to be between the first day of the same month of the previous year and the same day of the previous year. You can use the calculated fields [Calc1] and [Calc2] to get these dates. [Calc1] returns the date that is one year before today, and
[Calc2] returns the date that is the first day of the month of [Calc1]. By using these fields in the filter condition, you can get the desired result.
References:
Finding the Month-to-Date Values for the Prior Year
[DATEADD Function]
[DATETRUNC Function]
問題3
ダッシュボードを公開すると、attract が使用されます。抽出は毎週月曜日の 10:00 に更新されます。
抽出が月の最終日の 18:00 にも更新されるようにする必要があります。
あなたは何をするべきか?

正確答案: A
說明:(僅 VCESoft 成員可見)
問題4
次のような視覚化が得られます。
Last() 計算は、Table (across) を使用して計算するように設定されています。
コンピューティングを Oder Dale を使用するように変更すると、2018 年の Consumer セグメントのクロス集計にはどの値が表示されますか?

正確答案: C
說明:(僅 VCESoft 成員可見)
問題5
次のデータセットがあります。

[ランク] フィールドに表示されるランキングを計算する必要があります。
式をどのように完成させる必要がありますか? (回答エリアのドロップダウンを使用して正しいオプションを選択し、式を完成させますか?
正確答案:

Explanation:
To calculate the ranking shown in the Rank field, you need to use the RANK_UNIQUE function, which returns the unique rank of each value in a partition. You need to specify the expression as SUM([Sales]), which calculates the total sales for each product. You also need to specify the order as descending, which means that the highest sales will have the lowest rank. Finally, you need to specify the restart as every
[Category], which means that the ranking will reset for each category. References: https://help.tableau.com
/current/pro/desktop/en-us/functions_functions_tablecalculation.htm https://help.tableau.com/current/pro
/desktop/en-us/calculations_calculatedfields_lod_rank.htm
問題6
次のワークシートがあります。

各年の売上の伸びを示す表計算を作成したいと考えています。
式をどのように完成させるべきでしょうか? (回答領域のドロップダウンを使用して正しいオプションを選択し、数式を完成させてください。)
正確答案:

Explanation:
There are different ways to create a table calculation that shows sales growth over each year, but one possible answer is:
* SUM([Sales])
* LOOKUP(SUM([Sales]), -1)
* PREVIOUS_VALUE(0)
To calculate the sales growth over each year, you need to compare the current year's sales with the previous year's sales and divide the difference by the previous year's sales. You can use the SUM, LOOKUP, and PREVIOUS_VALUE functions to achieve this. The SUM function returns the total sales for each year. The LOOKUP function returns the value of an expression in a target row, specified as a relative offset from the current row. The PREVIOUS_VALUE function returns the value of the expression in the previous row, or a specified value if there is no previous row. The formula for the table calculation is:
(SUM([Sales]) - LOOKUP(SUM([Sales]), -1)) / PREVIOUS_VALUE(0)
This formula subtracts the sales of the previous year (LOOKUP(SUM([Sales]), -1)) from the sales of the current year (SUM([Sales])) and divides the result by the sales of the previous year. If there is no previous year, the formula uses 0 as the denominator (PREVIOUS_VALUE(0)) to avoid division by zero errors.
References:
Tableau Certified Data Analyst Exam Prep Guide, page 11, section "Creating Calculated Fields" Tableau Help: SUM Function Tableau Help: LOOKUP Function Tableau Help: PREVIOUS_VALUE Function
問題7
患者の健康に関する機密情報を含むダッシュボードがあります。医療従事者チームのために、データは常に最新の状態にしておく必要があります。ダッシュボードを医療従事者とどのように共有すればよいでしょうか?

正確答案: B
說明:(僅 VCESoft 成員可見)
問題8
データ アナリストには、Dorm_Code という名前のディメンションを含む次のプライマリ データ ソースがあります。

アナリストは、更新された寮コードを含む次のセカンダリ データ ソースを受け取ります。

アナリストは、更新された寮のコードを Tableau に取り込み、既存の視覚化でそのコードを使用する必要があります。
新しい寮コードには、既存のフィールド名 Dorm_Code を使用する必要があります。
アナリストは何をすべきでしょうか?

正確答案: B
問題9
新しいダッシュボードを作成しています。
ユーザーがダッシュボードを画像としてエクスポートできるようにするボタンをダッシュ​​ボードに追加する必要があります。
どのタイプのオブジェクトを使用する必要がありますか?

正確答案: B
說明:(僅 VCESoft 成員可見)
問題10
月ごとの平均売上を示す次の折れ線グラフがあります。

2019 年の前月と比較して、スエージの売上が最も増加したのはどの月ですか?

正確答案: A
說明:(僅 VCESoft 成員可見)
問題11
データ アナリストがビューよりも粒度の低い詳細レベルで売上を平均化するには、どの関数を使用する必要がありますか。

正確答案: C