回答編集履歴

1

Update

2021/12/29 18:23

投稿

melian
melian

スコア20655

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ch.df['加工順序'] = ch.df.groupby('機械')['前段取り'].rank(ascending=False).astype(int)
10
10
 
11
- print(ch.df[['作業者', '機械', '加工順序', '前段取り']].to_markdown(index=False))
11
+ print(ch.df[ch.df.columns[:4]].to_markdown(index=False))
12
12
 
13
13
  ```
14
14
 
@@ -76,7 +76,9 @@
76
76
 
77
77
  ```python
78
78
 
79
- print(ch.df.loc[df['機械']==5, ['作業者', '機械', '加工順序', '前段取り']])
79
+ print(ch.df.loc[ch.df['機械']==5, ch.df.columns[:4]])
80
+
81
+
80
82
 
81
83
  作業者 機械 加工順序 前段取り
82
84