Microsoft Power Bl レポートを含む Fabric テナントがあります。 新しいセマンティック モデルを探索しています。 次の列統計を表示する必要があります。 * カウント * 平均 * ヌルカウント * 個別のカウント * 標準偏差 どの Power Query 関数を実行する必要がありますか?
正解:B
The Table.Profile function in Power Query is used to generate column statistics such as count, average, null count, distinct count, and standard deviation. You can use this function as follows: * Invoke the Power Query Editor. * Apply the Table.Profile function to your table. * The result will be a table where each row represents a column from the original table, and each column in the result represents a different statistic such as those listed in the requirement. References: The use of Table.Profile is part of Power Query M function documentation where it explains how to gather column statistics for a given table.