I have a google sheet with a fixed number of columns and variabile numer of rows that are the value of environment sensors.
the sheet format is
im able to import it in a data frame with gspread-pandas
s=Spread(spread=gsheet_id,config=gspread_pandas.conf.get_config(conf_dir=conf_path,file_name=service_file))
pd.DataFrame=s.sheet_to_df(sheet='06-2020')
the problem is the type of Dataframe Series, each series has a dtype('0').
>>pd.DataFrame['T_PREP_[°C]'].dtypes
dtype('O')
To import a google sheet with correct type,i need to specify the data of each columns or i need to convert with pandas?
thanks in advance!