Pythonで、回帰分析を行う際に、説明変数が、200個ある場合に、200個すべて手入力せずに一括でリスト化する方法はありますでしょうか。
下記のコードの
columnList = [" "]
のところに、説明変数を入れようとおもっているのですが、
数量が多くて困っております。
よろしくお願いいたします。
Python
1columnList = [" "] 2X = royal_kokyaku_all.loc[:,columnList] 3y = royal_kokyaku_all.loc[:,["royal_all"]] 4 5# モデル構築用データ、モデル検証用データに分割(80:20に分割) 6X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) 7print(X_train.shape) 8print(X_test.shape) 9print(y_train.shape) 10print(y_test.shape)
回答1件
あなたの回答
tips
プレビュー