简体   繁体   中英

how to extract data from dataframe in python (Index)

I am trying to take the feature but not getting the results.

在此处输入图像描述

df_close = df['Close']
df_train = df_close[:'2019-12-31']
df_train.shape

training_set = df_close
from sklearn.preprocessing import MinMaxScaler
sc = MinMaxScaler(feature_range = (0, 1))
training_set_scaled = sc.fit_transform(training_set)
training_set_scaled[1]

import numpy as np
X_train = []
y_train = []
for i in range(100, training_set.shape[1]): 
  X_train.append(training_set_scaled[i-100:i, 0]) 
  y_train.append(training_set_scaled[i, 0]) 
X_train, y_train = np.array(X_train), np.array(y_train)
X_train

and the result is:

array([], dtype=float64)

If the value of training_set.shape[1] is smaller then 100 then the inside of the for loop is skipped, leaving X_train empty.

You could test this case by adding a print statement inside the for loop. Let me know if it worked, good luck!

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