We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd446aa commit ddf2070Copy full SHA for ddf2070
app/data/processing/predictive_models/v4.py
@@ -54,7 +54,7 @@ def process_data(
54
temp_celsius = (df_hobolink["temperature"] - 32) * 5 / 9
55
gamma = np.log(df_hobolink["rh"] / 100) + (b * temp_celsius) / (c + temp_celsius)
56
dew_point_est = (c * gamma / (b - gamma)) * 9 / 5 + 32
57
- df_hobolink["dew_point_est"] = df_hobolink["dew_point"].fillna(dew_point_est)
+ df_hobolink["dew_point"] = df_hobolink["dew_point"].fillna(dew_point_est)
58
59
# Now collapse the data.
60
# Take the mean measurements of everything except rain; rain is the sum
0 commit comments