アナリストは気象データを含むレポートを作成しています。温度は華氏で表示されます。ただし、摂氏で報告する必要があります。この問題を解決するには、アナリストが行うべきことは次のうちどれですか?
正解:C
The analyst should rescale the data to fix this issue. Rescaling is a process of transforming data from one scale to another, such as changing the units of measurement. In this case, the analyst needs to rescale the temperatures from Fahrenheit to Celsius, which are two different scales for measuring temperature. To do this, the analyst can use the following formula:
Celsius = (Fahrenheit - 32) * 5/9
This formula converts each temperature value from Fahrenheit to Celsius by subtracting 32 and multiplying by 5/9. For example, if the temperature is 68°F, the rescaled value in Celsius is:
Celsius = (68 - 32) * 5/9 Celsius = 20°C
Rescaling the data can help the analyst to report the temperatures in a consistent and accurate way, and to avoid any confusion or errors that may arise from using different scales. Rescaling can also make the data more comparable and compatible with other data sources or standards that use the same scale12.