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
Push a series of data and get it back via API query
for i in range(0,600000):
temperatura += 1
point = (
Point("Postazione1")
.tag("TipoTest", 1)
.field("Temperatura", temperatura))
DBresponse = write_api.write(bucket=bucket, org=config.influx_org, record=point)
time.sleep(.01)
Then get back the data with API AND THE QUERY BELOW
Specifications
Code sample to reproduce problem
Push a series of data and get it back via API query
Then get back the data with API AND THE QUERY BELOW
For some reason,
df
is a list of, in my case, 2 data frames so I can accessdf[0]
anddf[1]
Why I got 2 data frames and not one?
Expected behavior
Return a single data frame with all the data from my measure
Actual behavior
Return two data frames
Additional info
No response
The text was updated successfully, but these errors were encountered: