回答編集履歴
2
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
テーブルデータのスクレイピングであれば、pandas.read_html() を使ったほうが圧倒的に楽です。read_html() はページ内のテーブルを DataFrame として返す関数です。
|
1
|
+
テーブルデータのスクレイピングであれば、[pandas.read_html()](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_html.html) を使ったほうが圧倒的に楽です。read_html() はページ内のテーブルを DataFrame として返す関数です。
|
2
2
|
|
3
3
|
そうすれば、住所と電話番号を分けるなどの後処理は pandas の機能でできます。
|
4
4
|
|
1
修正
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
それらを区切る文字列に注目して、str.split() で分割する。
|
13
|
+
それらを区切る文字列に注目して、[Series.str.split()](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.str.split.html) で分割する。
|
14
14
|
|
15
15
|
|
16
16
|
|