You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the notebook under examples/noaa-isd/notebooks is not working for me:
When running the notebook up to df = pd.read_sql("SELECT obs_date, obs_time, air_temp, air_dewpoint_temp FROM noaaisd.isd where station_call = 'KOKC ' and air_temp_quality = '5' and air_dewpoint_temp_quality = '5' and year between 2010 and 2018;", conn) df
I get:
OperationalError Traceback (most recent call last)
File [~/miniconda3/envs/pe/lib/python3.12/site-packages/pandas/io/sql.py:2675](http://localhost:8888/lab/tree/~/miniconda3/envs/pe/lib/python3.12/site-packages/pandas/io/sql.py#line=2674), in SQLiteDatabase.execute(self, sql, params)
2674 try:
-> 2675 cur.execute(sql, *args)
2676 return cur
File [~/miniconda3/envs/pe/lib/python3.12/site-packages/pyathena/cursor.py:108](http://localhost:8888/lab/tree/~/miniconda3/envs/pe/lib/python3.12/site-packages/pyathena/cursor.py#line=107), in Cursor.execute(self, operation, parameters, work_group, s3_staging_dir, cache_size, cache_expiration_time, result_reuse_enable, result_reuse_minutes, **kwargs)
107 else:
--> 108 raise OperationalError(query_execution.state_change_reason)
109 return self
OperationalError: SCHEMA_NOT_FOUND: line 1:61: Schema 'noaaisd' does not exist
the notebook under examples/noaa-isd/notebooks is not working for me:
When running the notebook up to
df = pd.read_sql("SELECT obs_date, obs_time, air_temp, air_dewpoint_temp FROM noaaisd.isd where station_call = 'KOKC ' and air_temp_quality = '5' and air_dewpoint_temp_quality = '5' and year between 2010 and 2018;", conn) df
I get:
Is this a bug? Thank you! @zflamig
The text was updated successfully, but these errors were encountered: