itou-daiki commited on
Commit
cd54376
1 Parent(s): a71c15e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,13 +7,14 @@ import matplotlib.pyplot as plt
7
  import japanize_matplotlib
8
 
9
  def plot_selected_model(file, ignore_features, target_variable, analysis_type, plot_type):
 
10
  if file is None:
11
  return "エラー: ファイルがアップロードされていません。", None
12
 
13
  if file.name.endswith('.csv'):
14
  data = pd.read_csv(file)
15
  else:
16
- data = pd.read_excel(file, engine='openpyxl') # engineを指定
17
 
18
  data = data.dropna(subset=[target_variable])
19
  data_ignored = data.drop(columns=ignore_features)
 
7
  import japanize_matplotlib
8
 
9
  def plot_selected_model(file, ignore_features, target_variable, analysis_type, plot_type):
10
+ print(file) # この行を追加
11
  if file is None:
12
  return "エラー: ファイルがアップロードされていません。", None
13
 
14
  if file.name.endswith('.csv'):
15
  data = pd.read_csv(file)
16
  else:
17
+ data = pd.read_excel(file, engine='xlrd') # engineを指定
18
 
19
  data = data.dropna(subset=[target_variable])
20
  data_ignored = data.drop(columns=ignore_features)