各國GDP比較
-
上傳csv檔案
from google.colab import files data = files.upload()
import numpy as np import pandas as pd import csv # 匯入plotly套件,以便繪製視覺化圖形 from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot import plotly.graph_objs as go data1 = pd.read_csv('gdp_taiwan.csv') data2 = pd.read_csv('gdp_world.csv') Taiwan = data1.loc[0] country = data2.loc[117] print(country) years = np.linspace(1960, 2017, 58) # 製造從 1960 至 2017 的年 trace1 = go.Scatter( x = years, y = Taiwan*1000000, mode = 'lines+markers', name = '臺灣' ) trace2 = go.Scatter( x = years, y = country, mode = 'lines+markers', name = '日本' ) data = [trace1, trace2] iplot(data, filename='scatter-mode')
臺灣(Taiwan)
- 古巴(Cuba)
- 挪威(Norway)
- 澳洲(Australia)
- 瑞士(Switzerland)
- 德國(Germany)
- 丹麥(Denmark)
- 荷蘭(Netherlands)
- 新加坡(Singapore)
- 加拿大(Canada)
- 美國(United States)
- 瑞典(Sweden)
- 西班牙(Spain)
- 南韓(Korea)
- 俄羅絲(Russia)
- 墨西哥(Mexico)
- 芬蘭(Finland)
- 巴西(Brazil)
- 法國(France)
- 阿富汗(Afghanistan)
- 馬來西亞(Malaysia)
- 印度(India)
- 英國(United Kingdom)
- 中國(China)
- 菲律賓(Philippines)
- 印尼(Indonesia)
- 泰國(Thailand)
- 紐西蘭(New Zealand)
- 秘魯(Peru)
- 智利(Chile)
- 卡達(Qatar)
- 盧森堡(Luxembourg)
- 孟加拉(Bangladesh)
- 伊朗(Iran)
- 肯亞(Kenya)
- 南非(South Africa)
- 以色列(Israel)
- 斯里蘭卡(Sri Lanka)
- 葉門(Yemen)
- 坦尚尼亞(Tanzania)
- 模里西斯(Mauritius)
-