Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson24-diy3
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0fb81032
authored
4 months ago
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
852ea10f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
121 additions
and
3 deletions
my_analysis.py
水果.html
my_analysis.py
View file @
0fb81032
from
pyecharts.charts
import
Lin
e
from
pyecharts.charts
import
Pi
e
test
=
[
"第1次"
,
"第2次"
,
"第3次"
,
"第4次"
,
"第5次"
,
"第6次"
,
"第7次"
,
"第8次"
,
"第9次"
,
"第10次"
]
test
=
[
"第1次"
,
"第2次"
,
"第3次"
,
"第4次"
,
"第5次"
,
"第6次"
,
"第7次"
,
"第8次"
,
"第9次"
,
"第10次"
]
student1
=
[
112
,
110
,
118
,
124
,
129
,
132
,
136
,
139
,
144
,
143
]
# 聪聪
student1
=
[
112
,
110
,
118
,
124
,
129
,
132
,
136
,
139
,
144
,
143
]
# 聪聪
student2
=
[
128
,
131
,
132
,
129
,
130
,
127
,
129
,
131
,
132
,
128
]
# 小杰
student2
=
[
128
,
131
,
132
,
129
,
130
,
127
,
129
,
131
,
132
,
128
]
# 小杰
student3
=
[
143
,
145
,
140
,
133
,
134
,
126
,
121
,
120
,
114
,
105
]
# 皮皮
student3
=
[
143
,
145
,
140
,
133
,
134
,
126
,
121
,
120
,
114
,
105
]
# 皮皮
\ No newline at end of file
pie
=
Pie
()
pie
.
add
(
''
,[(
'苹果'
,
50
),(
'香蕉'
,
30
),(
'草莓'
,
20
)],
label_opts
=
)
pie
.
render
(
'水果.html'
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
水果.html
0 → 100644
View file @
0fb81032
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Awesome-pyecharts
</title>
<script
type=
"text/javascript"
src=
"https://assets.pyecharts.org/assets/echarts.min.js"
></script>
</head>
<body>
<div
id=
"fc935c7a3a1d4510b12fee62835ed36d"
class=
"chart-container"
style=
"width:900px; height:500px;"
></div>
<script>
var
chart_fc935c7a3a1d4510b12fee62835ed36d
=
echarts
.
init
(
document
.
getElementById
(
'fc935c7a3a1d4510b12fee62835ed36d'
),
'white'
,
{
renderer
:
'canvas'
});
var
option_fc935c7a3a1d4510b12fee62835ed36d
=
{
"animation"
:
true
,
"animationThreshold"
:
2000
,
"animationDuration"
:
1000
,
"animationEasing"
:
"cubicOut"
,
"animationDelay"
:
0
,
"animationDurationUpdate"
:
300
,
"animationEasingUpdate"
:
"cubicOut"
,
"animationDelayUpdate"
:
0
,
"color"
:
[
"#c23531"
,
"#2f4554"
,
"#61a0a8"
,
"#d48265"
,
"#749f83"
,
"#ca8622"
,
"#bda29a"
,
"#6e7074"
,
"#546570"
,
"#c4ccd3"
,
"#f05b72"
,
"#ef5b9c"
,
"#f47920"
,
"#905a3d"
,
"#fab27b"
,
"#2a5caa"
,
"#444693"
,
"#726930"
,
"#b2d235"
,
"#6d8346"
,
"#ac6767"
,
"#1d953f"
,
"#6950a1"
,
"#918597"
],
"series"
:
[
{
"type"
:
"pie"
,
"clockwise"
:
true
,
"data"
:
[
{
"name"
:
"\u82f9\u679c"
,
"value"
:
50
},
{
"name"
:
"\u9999\u8549"
,
"value"
:
30
},
{
"name"
:
"\u8349\u8393"
,
"value"
:
20
}
],
"radius"
:
[
"0%"
,
"75%"
],
"center"
:
[
"50%"
,
"50%"
],
"label"
:
{
"show"
:
true
,
"position"
:
"top"
,
"margin"
:
8
}
}
],
"legend"
:
[
{
"data"
:
[
"\u82f9\u679c"
,
"\u9999\u8549"
,
"\u8349\u8393"
],
"selected"
:
{}
}
],
"tooltip"
:
{
"show"
:
true
,
"trigger"
:
"item"
,
"triggerOn"
:
"mousemove|click"
,
"axisPointer"
:
{
"type"
:
"line"
},
"showContent"
:
true
,
"alwaysShowContent"
:
false
,
"showDelay"
:
0
,
"hideDelay"
:
100
,
"textStyle"
:
{
"fontSize"
:
14
},
"borderWidth"
:
0
,
"padding"
:
5
}
};
chart_fc935c7a3a1d4510b12fee62835ed36d
.
setOption
(
option_fc935c7a3a1d4510b12fee62835ed36d
);
</script>
</body>
</html>
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment