1 Star 0 Fork 0

朱康宝/CSDN

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
pie.py 641 Bytes
Copy Edit Raw Blame History
朱康宝 authored 2018-12-14 14:53 +08:00 . pie
# -*- coding: utf-8 -*-
"""
date: Fri Dec 14 14:40:41 2018
python: Anaconda 3.6.5
author: kanade
email: kanade@blisst.cn
"""
import matplotlib.pyplot as mp
# 生成数据
values = [26, 17, 21, 29, 11]
spaces = [0.05, 0.01, 0.01, 0.01, 0.01]
labels = ['Python', 'JavaScript', 'C++', 'Java', 'PHP']
colors = ['dodgerblue', 'orangered', 'limegreen', 'violet', 'gold']
# 创建图形窗口
mp.figure('Pie', facecolor='lightgray')
# 设置窗口标题
mp.title('Pie', fontsize=20)
# 绘制饼图
mp.pie(values, spaces, labels, colors, '0.%d',
shadow=True, startangle=90)
# 设置纵横比为1:1
mp.axis('equal')
# 显示图形
mp.show()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kanadeblisst/CSDN.git
git@gitee.com:kanadeblisst/CSDN.git
kanadeblisst
CSDN
CSDN
master

Search