なぜ下記の例では、Listのインデックッスを指定し取り出した要素が、DataFrameになるのでしょう。
参考:「pythonによるデータ分析/Wes Mckinney p195〜196より)
python
1import pandas as pd 2 3table=pd.read_html('https://www.fdic.gov/resources/resolutions/bank-failures/failed-bank-list/banklist.html') 4 5table
python
1table[0]
python
1#上記、タイプはDataFrameとなっています。 2type(tables[0]) 3pandas.core.frame.DataFrame 4 5#たとえば、通常は、こんな感じです。 6lst=['abcde'] 7type(lst[0]) 8str
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/30 07:15