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
d2acc64e
authored
Nov 10, 2024
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
d0011bc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
392 additions
and
14 deletions
my_analysis.py
render.html
my_analysis.py
View file @
d2acc64e
from
pyecharts.charts
import
Line
test
=
[
"第1次"
,
"第2次"
,
"第3次"
,
"第4次"
,
"第5次"
,
"第6次"
,
"第7次"
,
"第8次"
,
"第9次"
,
"第10次"
]
student1
=
[
112
,
110
,
118
,
124
,
129
,
132
,
136
,
139
,
144
,
143
]
# 聪聪
student2
=
[
128
,
131
,
132
,
129
,
130
,
127
,
129
,
131
,
132
,
128
]
# 小杰
student3
=
[
143
,
145
,
140
,
133
,
134
,
126
,
121
,
120
,
114
,
105
]
# 皮皮
line
=
Line
()
line
.
add_xaxis
(
test
)
line
.
add_yaxis
(
'数学成绩'
,
student1
)
line
.
add_yaxis
(
'数学成绩'
,
student2
)
line
.
add_yaxis
(
'数学成绩'
,
student3
)
line
.
render
(
'rain.html'
)
\ No newline at end of file
from
pyecharts.charts
import
Line
x
=
[
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'10'
,
'11'
,
'12'
]
y
=
[
90
,
100
,
100
,
100
,
100
,
90
,
120
,
110
,
120
,
150
,
140
,
150
]
y1
=
[
100
,
90
,
100
,
100
,
90
,
100
,
110
,
120
,
120
,
140
,
150
,
150
]
y2
=
[
0
,
0
,
90
,
90
,
100
,
100
,
120
,
120
,
110
,
150
,
150
,
140
]
line
=
Line
()
line
.
add_xaxis
(
x
)
line
.
add_yaxis
(
'yuwen'
,
y
)
line
.
add_yaxis
(
'shuxue'
,
y1
)
line
.
add_yaxis
(
'yingyu'
,
y2
)
line
.
render
()
render.html
0 → 100644
View file @
d2acc64e
<!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=
"40ecd8a544f149eb98ba96da861e0f8b"
class=
"chart-container"
style=
"width:900px; height:500px;"
></div>
<script>
var
chart_40ecd8a544f149eb98ba96da861e0f8b
=
echarts
.
init
(
document
.
getElementById
(
'40ecd8a544f149eb98ba96da861e0f8b'
),
'white'
,
{
renderer
:
'canvas'
});
var
option_40ecd8a544f149eb98ba96da861e0f8b
=
{
"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"
:
"line"
,
"name"
:
"yuwen"
,
"connectNulls"
:
false
,
"symbolSize"
:
4
,
"showSymbol"
:
true
,
"smooth"
:
false
,
"clip"
:
true
,
"step"
:
false
,
"data"
:
[
[
"1"
,
90
],
[
"2"
,
100
],
[
"3"
,
100
],
[
"4"
,
100
],
[
"5"
,
100
],
[
"6"
,
90
],
[
"7"
,
120
],
[
"8"
,
110
],
[
"9"
,
120
],
[
"10"
,
150
],
[
"11"
,
140
],
[
"12"
,
150
]
],
"hoverAnimation"
:
true
,
"label"
:
{
"show"
:
true
,
"position"
:
"top"
,
"margin"
:
8
},
"lineStyle"
:
{
"show"
:
true
,
"width"
:
1
,
"opacity"
:
1
,
"curveness"
:
0
,
"type"
:
"solid"
},
"areaStyle"
:
{
"opacity"
:
0
},
"zlevel"
:
0
,
"z"
:
0
},
{
"type"
:
"line"
,
"name"
:
"shuxue"
,
"connectNulls"
:
false
,
"symbolSize"
:
4
,
"showSymbol"
:
true
,
"smooth"
:
false
,
"clip"
:
true
,
"step"
:
false
,
"data"
:
[
[
"1"
,
100
],
[
"2"
,
90
],
[
"3"
,
100
],
[
"4"
,
100
],
[
"5"
,
90
],
[
"6"
,
100
],
[
"7"
,
110
],
[
"8"
,
120
],
[
"9"
,
120
],
[
"10"
,
140
],
[
"11"
,
150
],
[
"12"
,
150
]
],
"hoverAnimation"
:
true
,
"label"
:
{
"show"
:
true
,
"position"
:
"top"
,
"margin"
:
8
},
"lineStyle"
:
{
"show"
:
true
,
"width"
:
1
,
"opacity"
:
1
,
"curveness"
:
0
,
"type"
:
"solid"
},
"areaStyle"
:
{
"opacity"
:
0
},
"zlevel"
:
0
,
"z"
:
0
},
{
"type"
:
"line"
,
"name"
:
"yingyu"
,
"connectNulls"
:
false
,
"symbolSize"
:
4
,
"showSymbol"
:
true
,
"smooth"
:
false
,
"clip"
:
true
,
"step"
:
false
,
"data"
:
[
[
"1"
,
0
],
[
"2"
,
0
],
[
"3"
,
90
],
[
"4"
,
90
],
[
"5"
,
100
],
[
"6"
,
100
],
[
"7"
,
120
],
[
"8"
,
120
],
[
"9"
,
110
],
[
"10"
,
150
],
[
"11"
,
150
],
[
"12"
,
140
]
],
"hoverAnimation"
:
true
,
"label"
:
{
"show"
:
true
,
"position"
:
"top"
,
"margin"
:
8
},
"lineStyle"
:
{
"show"
:
true
,
"width"
:
1
,
"opacity"
:
1
,
"curveness"
:
0
,
"type"
:
"solid"
},
"areaStyle"
:
{
"opacity"
:
0
},
"zlevel"
:
0
,
"z"
:
0
}
],
"legend"
:
[
{
"data"
:
[
"yuwen"
,
"shuxue"
,
"yingyu"
],
"selected"
:
{
"yuwen"
:
true
,
"shuxue"
:
true
,
"yingyu"
:
true
}
}
],
"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
},
"xAxis"
:
[
{
"show"
:
true
,
"scale"
:
false
,
"nameLocation"
:
"end"
,
"nameGap"
:
15
,
"gridIndex"
:
0
,
"inverse"
:
false
,
"offset"
:
0
,
"splitNumber"
:
5
,
"minInterval"
:
0
,
"splitLine"
:
{
"show"
:
false
,
"lineStyle"
:
{
"show"
:
true
,
"width"
:
1
,
"opacity"
:
1
,
"curveness"
:
0
,
"type"
:
"solid"
}
},
"data"
:
[
"1"
,
"2"
,
"3"
,
"4"
,
"5"
,
"6"
,
"7"
,
"8"
,
"9"
,
"10"
,
"11"
,
"12"
]
}
],
"yAxis"
:
[
{
"show"
:
true
,
"scale"
:
false
,
"nameLocation"
:
"end"
,
"nameGap"
:
15
,
"gridIndex"
:
0
,
"inverse"
:
false
,
"offset"
:
0
,
"splitNumber"
:
5
,
"minInterval"
:
0
,
"splitLine"
:
{
"show"
:
false
,
"lineStyle"
:
{
"show"
:
true
,
"width"
:
1
,
"opacity"
:
1
,
"curveness"
:
0
,
"type"
:
"solid"
}
}
}
]
};
chart_40ecd8a544f149eb98ba96da861e0f8b
.
setOption
(
option_40ecd8a544f149eb98ba96da861e0f8b
);
</script>
</body>
</html>
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