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 51fdb0b commit 7d93e6aCopy full SHA for 7d93e6a
composer/2022_airflow_summit/data_analytics_process_expansion.py
@@ -167,11 +167,6 @@ def phx_dw_compute(input_list) -> float:
167
weight = weights_list[input_list.index(row)]
168
dwa_result += weight * annual_value
169
170
- # print("weight list", weights_list)
171
- # print("factor list", factor_list)
172
- # print("return result", dwa_result)
173
- # print("factor sum", factor_sum)
174
-
175
return dwa_result
176
177
for year_val in range(1997, 2022):
@@ -185,7 +180,7 @@ def phx_dw_compute(input_list) -> float:
185
180
.agg(sum("VALUE").alias("ANNUAL_PRCP"))
186
181
.collect()
187
182
)
188
- # print(prcp_year)
183
+
189
184
snow_year = (
190
annual_df.where(
191
(annual_df.ELEMENT == "SNOW") & (annual_df.YEAR == year_val)
0 commit comments