Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Install-python-tensorflow-gym
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christof Kaufmann
Install-python-tensorflow-gym
Commits
2f7f499c
Commit
2f7f499c
authored
1 year ago
by
Christof Kaufmann
Browse files
Options
Downloads
Patches
Plain Diff
Add scatter plot matrix script and image
parent
4526a6d2
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
attachments/scatterplot-matrix.py
+10
-0
10 additions, 0 deletions
attachments/scatterplot-matrix.py
images/scatterplot-matrix.png
+0
-0
0 additions, 0 deletions
images/scatterplot-matrix.png
with
10 additions
and
0 deletions
attachments/scatterplot-matrix.py
0 → 100644
+
10
−
0
View file @
2f7f499c
#%% imports
import
pandas
as
pd
import
seaborn
as
sns
from
sklearn.datasets
import
load_iris
# %% load data
data
=
pd
.
concat
(
load_iris
(
return_X_y
=
True
,
as_frame
=
True
),
axis
=
'
columns
'
)
# %% scatter plot matrix
sns
.
pairplot
(
data
,
hue
=
'
target
'
,
plot_kws
=
dict
(
alpha
=
0.8
))
This diff is collapsed.
Click to expand it.
images/scatterplot-matrix.png
0 → 100644
+
0
−
0
View file @
2f7f499c
261 KiB
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment