├── .idea
├── inspectionProfiles
│ └── profiles_settings.xml
├── mat.iml
├── misc.xml
├── modules.xml
└── workspace.xml
├── README.md
├── 折线图.py
├── 散点图.py
├── 条形图.py
├── 直方图.py
├── 箱形图.py
└── 饼状图.py
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/mat.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/workspace.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 | true
115 | DEFINITION_ORDER
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 | project
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 | 1496452679238
441 |
442 |
443 | 1496452679238
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 |
526 |
527 |
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 |
544 |
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 |
562 |
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # python数据可视化建图
2 | #所需环境(代码在python3.6.1下完美运行):
3 |
4 |
matplotlib:安装方法 pip install matplotlib 或 easy_install matplotlib
5 |
6 | numpy:安装方法 pip install numpy 或 easy_install numpy
7 |
--------------------------------------------------------------------------------
/折线图.py:
--------------------------------------------------------------------------------
1 | #coding:utf-8
2 | import matplotlib.pyplot as plt
3 | import matplotlib.dates as mdates
4 | import numpy as np
5 | x=np.linspace(-10000,10000,100) #将-10到10等区间分成100份
6 | y=x**2+x**3+x**7
7 | plt.plot(x,y)
8 | plt.show()
9 |
10 |
--------------------------------------------------------------------------------
/散点图.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python3
2 | import matplotlib.pyplot as plt
3 | import numpy as np
4 | N=50
5 | # height=np.random.randint(150,180,20)
6 | # weight=np.random.randint(80,150,20)
7 | x=np.random.randn(N)
8 | y=np.random.randn(N)
9 | plt.scatter(x,y,s=50,c='r',marker='o',alpha=0.5)
10 | plt.show()
11 |
12 |
--------------------------------------------------------------------------------
/条形图.py:
--------------------------------------------------------------------------------
1 | import matplotlib.pyplot as plt
2 | import numpy as np
3 | N=5
4 | y=[20,10,30,25,15]
5 | y1=np.random.randint(10,50,5)
6 | x=np.random.randint(10,1000,N)
7 | index=np.arange(N)
8 | # plt.bar(left=index,height=y,color='red',width=0.3)
9 | # plt.bar(left=index+0.3,height=y1,color='black',width=0.3)
10 | #plt.barh() 加了h就是横向的条形图,不用设置orientation
11 | plt.bar(left=0,bottom=index,width=y,color='red',height=0.5,orientation='horizontal')
12 | plt.show()
--------------------------------------------------------------------------------
/直方图.py:
--------------------------------------------------------------------------------
1 | #coding:utf-8
2 | import matplotlib.pyplot as plt
3 | import numpy as np
4 |
5 | # m1=100
6 | # sigma=20
7 | # x=m1+sigma*np.random.randn(2000)
8 | # plt.hist(x,bins=50,color="green",normed=True)
9 | # plt.show()
10 |
11 | #双变量的直方图
12 | #颜色越深频率越高
13 | #研究双变量的联合分布
14 | x=np.random.rand(1000)+2
15 | y=np.random.rand(1000)+3
16 | plt.hist2d(x,y,bins=40)
17 | plt.show()
18 |
--------------------------------------------------------------------------------
/箱形图.py:
--------------------------------------------------------------------------------
1 | #coding:utf-8
2 | import matplotlib.pyplot as plt
3 | import numpy as np
4 | data=np.random.normal(loc=0,scale=1,size=1000)
5 | #sym 点的形状,whis虚线的长度
6 | plt.boxplot(data,sym="o",whis=1.5)
7 | plt.show()
8 |
--------------------------------------------------------------------------------
/饼状图.py:
--------------------------------------------------------------------------------
1 | #coding:utf-8
2 | import matplotlib.pyplot as plt
3 | import numpy as np
4 | labes=['A','B','C','D']
5 | fracs=[15,30,45,10]
6 | explode=[0,0.1,0.05,0]
7 | #设置x,y轴比例为1:1,从而达到一个正的圆
8 | plt.axes(aspect=1)
9 | #labels标签参数,x是对应的数据列表,autopct显示每一个区域占的比例,explode突出显示某一块,shadow阴影
10 | plt.pie(x=fracs,labels=labes,autopct="%.0f%%",explode=explode,shadow=True)
11 | plt.show()
12 |
13 |
--------------------------------------------------------------------------------