Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有528个观察到的温度数据范围值数据(2-53)。我将缩放数据以使其范围在 0 和 1 之间以适应 beta 分布,以找出 beta 分布是否适合数据的天气。
谁能告诉我,我怎样才能根据我的数据进行缩放?
将它们除以最大值...例如
# Dummy data x = rnorm(100, mean=15) # Normalise x = x/max(x)