'How to plot multiple chart on one figure and combine with another?

# Create an axes object 
axes = plt.gca()

# pass the axes object to plot function
df.plot(kind='line', x='鄉鎮別', y='男', ax=axes,figsize=(10,8));
df.plot(kind='line', x='鄉鎮別', y='女', ax=axes,figsize=(10,8));
df.plot(kind='line', x='鄉鎮別', y='合計(男+女)', ax=axes,figsize=(10,8),title='hihii',
        xlabel='鄉鎮別',ylabel='人數') 

It's my data.

鄉鎮別 鄰數  戶數  男   女   合計(男+女) 遷入  遷出  出生  死亡  結婚  離婚
0   苗栗市 715 32517   42956   43362   86318   212 458 33  65  28  13
1   苑裡鎮 362 15204   22979   21040   44019   118 154 17  24  9   7
2   通霄鎮 394 11557   17034   15178   32212   73  113 5   33  3   3
3   竹南鎮 518 32061   44069   43275   87344   410 392 31  59  35  11
4   頭份市 567 38231   52858   52089   104947  363 404 39  69  31  19
5   後龍鎮 367 12147   18244   16274   34518   93  144 12  41  2   7
6   卓蘭鎮 176 5861    8206    7504    15710   29  51  1   11  2   0
7   大湖鄉 180 5206    7142    6238    13380   31  59  5   21  3   2
8   公館鄉 281 10842   16486   15159   31645   89  169 12  32  5   3
9   銅鑼鄉 218 6106    8887    7890    16777   57  62  7   13  4   1
10  南庄鄉 184 3846    5066    4136    9202    22  48  1   10  0   2
11  頭屋鄉 120 3596    5289    4672    9961    59  53  2   11  4   4
12  三義鄉 161 5625    8097    7205    15302   47  63  3   12  3   5
13  西湖鄉 108 2617    3653    2866    6519    38  20  1   17  3   0
14  造橋鄉 115 4144    6276    5545    11821   44  64  3   11  3   2
15  三灣鄉 93  2331    3395    2832    6227    27  18  2   9   0   2
16  獅潭鄉 98  1723    2300    1851    4151    28  10  1   4   0   0
17  泰安鄉 64  1994    3085    2642    5727    36  26  2   8   4   1
18  總計  4721    195608  276022  259758  535780  1776    2308    177 450 139 82

This my output df.plot
plot

First question is how to display Chinese?

Second is can I use without df.plot to plot line chart?

last question is : There are four graphs(use subplot): the line graphs of male and female population and total population(男、女、合計(男+女)) in each township; the line graphs of in-migration and out-migration(遷入和遷出); the long bar graphs of household number(戶數); and the line graphs of births and deaths(出生和死亡).



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source