質問編集履歴

2

文法の変更

2021/01/13 08:36

投稿

chgrios
chgrios

スコア70

test CHANGED
@@ -1 +1 @@
1
- pandas読み込みの際に非データ部分を消す方法
1
+ しつもpandas読み込みの際に非データ部分を消す方法
test CHANGED
@@ -40,9 +40,9 @@
40
40
 
41
41
  ```
42
42
 
43
- 一部コメントのようなものが含まれており、これを消すにはどのようにしたですか?
43
+ 一部コメントのようなものが含まれており、これを含まないデータ部分だけを抽出したいです
44
44
 
45
- 1,2,3,4ようバーついている部分だけを取り出したいで
45
+ 例では最初行にコメントが含まれていますが、実際にはさまざまところにコメ残ってい
46
46
 
47
47
  read_table()オプションで何か出来たりするのでしょうか?
48
48
 

1

問題の変更

2021/01/13 08:36

投稿

chgrios
chgrios

スコア70

test CHANGED
@@ -1 +1 @@
1
- pandasのコメント?を消す方法(追加する方法)
1
+ pandas読み込み際に非データ部分を消す方法
test CHANGED
@@ -1,10 +1,12 @@
1
- ## 知りたいこと
1
+ ## 課題 1
2
+
3
+
2
4
 
3
5
 
4
6
 
5
7
  ```ここに言語を入力
6
8
 
7
- txt = pd.read('test.txt')
9
+ txt = pd.read_table('test.txt',header=None)
8
10
 
9
11
  ```
10
12
 
@@ -14,38 +16,62 @@
14
16
 
15
17
  ```ここに言語を入力
16
18
 
17
- # Attributes for both student-mat.csv (Math course) and student-por.csv (Portuguese language course) datasets:
19
+ 0 # Attributes for both student-mat.csv (Math co...
18
20
 
19
- 0 1 school - student's school (binary: "GP" - Ga...
21
+ 1 1 school - student's school (binary: "GP" - Ga...
20
22
 
21
- 1 2 sex - student's sex (binary: "F" - female or...
23
+ 2 2 sex - student's sex (binary: "F" - female or...
22
24
 
23
- 2 3 age - student's age (numeric: from 15 to 22)
25
+ 3 3 age - student's age (numeric: from 15 to 22)
24
26
 
25
- 3 4 address - student's home address type (binar...
27
+ 4 4 address - student's home address type (binar...
26
28
 
27
- 4 5 famsize - family size (binary: "LE3" - less ...
29
+ 5 5 famsize - family size (binary: "LE3" - less ...
30
+
31
+ 6 6 Pstatus - parent's cohabitation status (bina...
32
+
33
+ 7 7 Medu - mother's education (numeric: 0 - none...
34
+
35
+ 8 8 Fedu - father's education (numeric: 0 - none...
36
+
37
+ 9 9 Mjob - mother's job (nominal: "teacher", "he...
38
+
39
+ 10 10 Fjob - father's job (nominal: "teacher", "h...
28
40
 
29
41
  ```
30
42
 
43
+ 一部コメントのようなものが含まれており、これを消すにはどのようにしたらいいですか?
44
+
45
+ 1,2,3,4のようなナンバーがついている部分だけを取り出したいです。
46
+
47
+ read_table()オプションで何か出来たりするのでしょうか?
31
48
 
32
49
 
50
+
51
+ ## 課題2
52
+
53
+ またデータ部分を抽出した際に
54
+
33
- txt.loc[0]とすると上記コメントのようなものが一緒取得されました。
55
+ データついている数字部分を消したいです(以下はゴールの見本です。)
56
+
57
+
34
58
 
35
59
  ```ここに言語を入力
36
60
 
37
- txt.loc[0]
61
+ 0 # Attributes for both student-mat.csv (Math co...
38
62
 
39
- >># Attributes for both student-mat.csv (Math course) and student-por.csv (Portuguese language course) datasets: 1 school - student's school (binary: "GP" - Ga...
63
+ 1 school - student's school (binary: "GP" - Ga...
40
64
 
65
+ 2 sex - student's sex (binary: "F" - female or...
66
+
41
- Name: 0, dtype: object
67
+ 3 age - student's age (numeric: from 15 to 22)
68
+
69
+ 4 address - student's home address type (binar...
70
+
71
+ 5 famsize - family size (binary: "LE3" - less ...
72
+
73
+ 6 Pstatus - parent's cohabitation status (bina...
74
+
75
+ 7 Medu - mother's education (numeric: 0 - none...
42
76
 
43
77
  ```
44
-
45
- txt.loc[1]でも同様にコメントのようなものがついてきたので、これを消す方法を知りたいです。
46
-
47
-
48
-
49
- ## 補足
50
-
51
- またどのようにしたらこのコメントのようなものをデータフレームに追加できるのでしょうか?