У меня есть dataframe под названием DF1:невозможно ресэмплировать свидание с питоном
df1 = pd.read_csv('C:/Users/Demonstrator/Desktop/equipement3.csv',delimiter=';', usecols = ['TIMESTAMP','ACT_TIME_AERATEUR_1_F1'])
TIMESTAMP;ACT_TIME_AERATEUR_1_F1
2015-07-31 23:00:00;90
2015-07-31 23:10:00;0
2015-07-31 23:20:00;0
2015-07-31 23:30:00;0
2015-07-31 23:40:00;0
2015-07-31 23:50:00;0
2015-08-01 00:00:00;0
2015-08-01 00:10:00;50
2015-08-01 00:20:00;0
2015-08-01 00:30:00;0
2015-08-01 00:40:00;0
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
from matplotlib import style
import pandas as pd
style.use('ggplot')
df1.index = pd.to_datetime(df1['TIMESTAMP'], format='%Y-%m-%d %H:%M:%S.%f')
df1 = df1.drop('TIMESTAMP', axis=1)
df1 = d1f.resample('resamplestring', how='mean')
я получил такую ошибку:
IndexError: only integers, slices (
:
), ellipsis (...
), numpy.newaxis (None
) and integer or boolean arrays are valid indices
Не могли бы вы помочь meplease?
Спасибо
что 'resamplestring'? 'df1 = d1f.resample ('resamplestring', how = 'mean')'? – EdChum