diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\344\273\243\347\240\201/.keep" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\344\273\243\347\240\201/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\344\273\243\347\240\201/\346\225\260\346\215\256\345\244\204\347\220\206" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\344\273\243\347\240\201/\346\225\260\346\215\256\345\244\204\347\220\206" new file mode 100644 index 0000000000000000000000000000000000000000..49b72455cdeb6e520cfdaeec11f3842df0072646 --- /dev/null +++ "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\344\273\243\347\240\201/\346\225\260\346\215\256\345\244\204\347\220\206" @@ -0,0 +1,58 @@ +import matplotlib.pyplot as plt +import seaborn as sns +import pandas as pd +import numpy as np +from pandas import read_csv +from pandas import DataFrame +from scipy.interpolate import make_interp_spline + +#导入数据 +cp = pd.read_csv("D:/开源设计/china_population.csv") +cp_forecast = pd.read_csv("D:/开源设计/china_population_forecast.csv") +cp.head() +cp.info() +cp_forecast.info() + +#去重 +cp= pd.read_csv("D:/开源设计/china_population.csv") +newcp= cp.drop_duplicates() + +#导出清洗后的文件 +result = 'D:/开源设计/china_population(1).csv' #创建数据保存位置 +newcp.to_csv(result,sep = ',',encoding = 'utf-8') + +#抽取人口年均增长率和各年总人口数 +table = pd.pivot_table(data=cp,values=["Yearly % Change", "Population"], index=["Year", sort=True) +result = 'D:/开源设计/中国人口数变化(含预测).csv' #创建数据保存位置 +table.to_csv(result,sep = ',',encoding = 'utf-8') + +#抽取人口密度 +table1 = pd.pivot_table(data=cp,values=["Density (P/Km虏)"], index=["Year", sort=True) +result = 'D:/开源设计/人口密度.csv' #创建数据保存位置 +table1.to_csv(result,sep = ',',encoding = 'utf-8') + +#抽取2020年中国人口和世界人口数 +table2 = cp.loc[cp['Year'] == '2020', ['Population','World Population']] + +#抽取2020年中国人口和城市人口数 +table3 = cp.loc[cp['Year'] == '2020', ['Population','Urban Population']] + +#导出为excel +table2.to_excel('中国人口占比.xlsx') +table3.to_excel('城市人口占比.xlsx') + +#抽取年份和城市人口占比 +df1 = pd.pivot_table(data=cp,values=["Urban Pop%"], index=["Year", sort=True) +result = 'D:/开源设计/城市人口占总人口比重.csv' #创建数据保存位置 +df1.to_csv(result,sep = ',',encoding = 'utf-8') + +#抽取年龄中位数和生育率 +df2 = pd.pivot_table(data=cp,values=["Median Age", "Fertility Rate"], index=["Year", sort=True) +result = 'D:/开源设计/生育率和年龄中位数变化.csv' #创建数据保存位置 +df2.to_csv(result,sep = ',',encoding = 'utf-8') + +#城市人口增长 +df3 = pd.pivot_table(data=cp,values=["Urban Population"], index=["Year", sort=True) +result = 'D:/开源设计/城市人口增长.csv' #创建数据保存位置 +df3.to_csv(result,sep = ',',encoding = 'utf-8') + \ No newline at end of file diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\347\273\237\350\256\241\345\217\212\351\242\204\346\265\213\345\244\247\345\261\217.jpg" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\347\273\237\350\256\241\345\217\212\351\242\204\346\265\213\345\244\247\345\261\217.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..13f061774b421741c6b8c536fd7975849b5f1c46 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\347\273\237\350\256\241\345\217\212\351\242\204\346\265\213\345\244\247\345\261\217.jpg" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/.keep" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224 \344\270\226\347\225\214\344\272\272\345\217\243\345\215\240\346\257\224\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.jpg" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224 \344\270\226\347\225\214\344\272\272\345\217\243\345\215\240\346\257\224\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2a0494eba8676042a71bee05d29fc8c72f300f5c Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224 \344\270\226\347\225\214\344\272\272\345\217\243\345\215\240\346\257\224\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.jpg" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\242\236\351\225\277\350\266\213\345\212\277\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\242\236\351\225\277\350\266\213\345\212\277\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..552eaa211c1c940cc491772fd8129e5b39165dfc Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\233\275\344\272\272\345\217\243\345\242\236\351\225\277\350\266\213\345\212\277\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\261\217\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\261\217\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..32fd8e3f0bdb6e8cfbfa2f7f42804d1ad87a80a5 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\270\255\345\261\217\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\272\272\345\217\243\345\257\206\345\272\246\345\217\230\345\214\226\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\272\272\345\217\243\345\257\206\345\272\246\345\217\230\345\214\226\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..0ff59242adef9f45f1ae18361f092600e9511193 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\344\270\255\345\261\217/\344\272\272\345\217\243\345\257\206\345\272\246\345\217\230\345\214\226\357\274\210\351\231\210\345\206\260\345\207\235\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\217\263\345\261\217\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\217\263\345\261\217\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..f16dd29343593b2e98a62abed94ae4fec81fb228 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\217\263\345\261\217\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..750b1f4332c97c606132fec57c7423dae0d9f7b1 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..5624c3653391120e6a0488471e70ba4e45e294a0 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\271\264\351\276\204\344\270\255\344\275\215\346\225\260\345\217\212\347\224\237\350\202\262\347\216\207\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\271\264\351\276\204\344\270\255\344\275\215\346\225\260\345\217\212\347\224\237\350\202\262\347\216\207\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..4327d05695d91059a29bfb445c05b9c9dba7a2a5 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\217\263\345\261\217/\345\271\264\351\276\204\344\270\255\344\275\215\346\225\260\345\217\212\347\224\237\350\202\262\347\216\207\357\274\210\346\235\250\347\250\213\345\256\207\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/.keep" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\270\255\345\233\275\344\270\273\350\246\201\345\237\216\345\270\202\344\272\272\345\217\243\346\225\260\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\270\255\345\233\275\344\270\273\350\246\201\345\237\216\345\270\202\344\272\272\345\217\243\346\225\260\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..91452959fc9a8e44288c6bc7bb0893026952366e Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\270\255\345\233\275\344\270\273\350\246\201\345\237\216\345\270\202\344\272\272\345\217\243\346\225\260\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\272\272\345\217\243\347\273\237\350\256\241\350\257\215\344\272\221\345\233\276\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\272\272\345\217\243\347\273\237\350\256\241\350\257\215\344\272\221\345\233\276\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..4bf81e48ea61124828f96f355e6876c87c1872dc Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\344\272\272\345\217\243\347\273\237\350\256\241\350\257\215\344\272\221\345\233\276\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\346\246\202\350\247\210\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\346\246\202\350\247\210\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..08117a8d20be930dc9c229b86bf55e618ac635bd Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\237\216\345\270\202\344\272\272\345\217\243\346\246\202\350\247\210\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\267\246\345\261\217\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\267\246\345\261\217\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" new file mode 100644 index 0000000000000000000000000000000000000000..b6666702c33c3e0ed231de7ba25eab5eb9a4d3a2 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\210\252\345\233\276\346\210\226\345\275\225\345\261\217/\345\267\246\345\261\217/\345\267\246\345\261\217\357\274\210\345\272\236\351\246\250\346\202\246\357\274\211.png" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/.keep" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..23ef522ddb968a3dd5d15ae32baba04e2a1eab05 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population_forecast.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population_forecast.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..485e38e11b62ae82d19aa1310fe8d7f4107103f0 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/china_population_forecast.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/city_china_population.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/city_china_population.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..1701eb2ca3ccfea09cfe3de16d3b7218860acb3b Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/city_china_population.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..f3103dd738972d7593f39fbb3364d6503b1dd840 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\222\214\344\270\226\347\225\214\344\272\272\345\217\243\345\257\271\346\257\224.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\222\214\344\270\226\347\225\214\344\272\272\345\217\243\345\257\271\346\257\224.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..ab99534124b3db1b2b76c7b82da681f1debf2641 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\345\222\214\344\270\226\347\225\214\344\272\272\345\217\243\345\257\271\346\257\224.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\347\273\237\350\256\241.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\347\273\237\350\256\241.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..04d9afbfafb3d437f9a7eafddffb461a3f856451 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\347\273\237\350\256\241.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\357\274\210\345\220\253\351\242\204\346\265\213\357\274\211.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\357\274\210\345\220\253\351\242\204\346\265\213\357\274\211.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..e0d6233cdb3f22408f0eb07205fee294516858b0 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\270\255\345\233\275\344\272\272\345\217\243\346\225\260\345\217\230\345\214\226\357\274\210\345\220\253\351\242\204\346\265\213\357\274\211.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\272\272\345\217\243\345\257\206\345\272\246.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\272\272\345\217\243\345\257\206\345\272\246.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..41cd65b620f630f1c55265c4cb8bd01f42c0da7c Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\344\272\272\345\217\243\345\257\206\345\272\246.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..3ed0266aa8814f198adb7a6e44f1db4cff3978ab Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\200\273\344\272\272\345\217\243\346\257\224\351\207\215.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..f373c7aa17bad451666dcc8eb5ec4d103f6998b0 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\215\240\346\257\224.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..7e10611976411caab1964eb1fc9f7e0411db0a09 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\345\237\216\345\270\202\344\272\272\345\217\243\345\242\236\351\225\277.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\347\224\237\350\202\262\347\216\207\351\232\217\345\271\264\344\273\275\345\217\230\345\214\226_\344\270\255\344\275\215\346\225\260.xlsx" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\347\224\237\350\202\262\347\216\207\351\232\217\345\271\264\344\273\275\345\217\230\345\214\226_\344\270\255\344\275\215\346\225\260.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..36c7399e854dcfd9ade420836891cdfc412e0db5 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\346\225\260\346\215\256/\347\224\237\350\202\262\347\216\207\351\232\217\345\271\264\344\273\275\345\217\230\345\214\226_\344\270\255\344\275\215\346\225\260.xlsx" differ diff --git "a/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\350\257\264\346\230\216.pdf" "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\350\257\264\346\230\216.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..5e85985f524e8dae67786e48d33b8f8be3c2ddc1 Binary files /dev/null and "b/03-\350\257\276\347\250\213\345\256\236\351\252\214/SE2102007/\351\241\271\347\233\256\350\257\264\346\230\216.pdf" differ