简体   繁体   中英

'numpy.ndarray' object has no attribute 'values'

I want to shift my time series data, but getting following error:

AttributeError: 'numpy.ndarray' object has no attribute 'values'

Thats my Code:

def create_dataset(datasets):
    #series = dataset
    temps = DataFrame(datasets.values)
    dataframes = concat(
        [temps, temps.shift(-1), temps.shift(-2), temps.shift(-3)], axis=1)
    lala = numpy.array(dataframes)
    return lala

    #load
    dataframe = pandas.read_csv('zahlenreihe.csv', index_col=False,   
    engine='python', header=None)
    dataset = dataframe.values
    dataset = dataset.astype('float32')

    #split 
    train_size = int(len(dataset) * 0.70)
    test_size = len(dataset) - train_size
    train, test = dataset[0:train_size,:], dataset[train_size:len(dataset),:]

    #create
    trainX = create_dataset(train)

I think the following line is wrong:

temps = DataFrame(datasets.values)

My zahlenreihe.csv just has integers ordered like:

  1
  2
  3
  4
  5
  n

How should i handle it?

解决方案:给定的数据集已经是一个数组,所以我不需要调用.value。

The problem lies in the following line:

df = StandardScaler().fit_transform(df) It returns a numpy array (see docs), which does not have a drop function. You would have to convert it into a pd.DataFrame first!

new_df = pd.DataFrame(StandardScaler().fit_transform(df), columns=df.columns, index=df.index)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM