FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
machinelearningclassification/irisplot.py at master · cambridgecoding/machinelearningclassification · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
cambridgecoding
/
machinelearningclassification
Public
Notifications
You must be signed in to change notification settings
Fork
445
Star
13
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
machinelearningclassification
/
irisplot.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (20 loc) · 801 Bytes
Breadcrumbs
machinelearningclassification
/
irisplot.py
Copy path
File metadata and controls
25 lines (20 loc) · 801 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import
matplotlib
.
pyplot
as
plt
from
sklearn
.
datasets
import
load_iris
iris
=
load_iris
()
X
=
iris
.
data
labels
=
iris
.
target_names
#Symbols to represent the points for the three classes on the graph.
gMarkers
=
[
"+"
,
"_"
,
"x"
]
#Colours to represent the points for the three classes on the graph
gColours
=
[
"blue"
,
"magenta"
,
"cyan"
]
#The index of the class in target_names
gIndices
=
[
0
,
1
,
2
]
#Column indices for the two features you want to plot against each other:
f1
=
0
f2
=
1
for
mark
,
col
,
i
,
iris
.
target_name
in
zip
(
gMarkers
,
gColours
,
gIndices
,
labels
):
plt
.
scatter
(
x
=
X
[
iris
.
target
==
i
,
f1
],
y
=
X
[
iris
.
target
==
i
,
f2
],
marker
=
mark
,
c
=
col
,
label
=
iris
.
target_name
)
plt
.
legend
(
loc
=
'upper right'
)
plt
.
xlabel
(
iris
.
feature_names
[
f1
])
plt
.
ylabel
(
iris
.
feature_names
[
f2
])
plt
.
show
()
Back
|
FazBrowse Home
|
New Git URL