You are on page 1of 3

3/13/24, 3:49 PM Data Visualization Cheat Sheet for Basic Machine Learning Algorithms | by Boriharn K | Mar, 2024 | Tow

s | by Boriharn K | Mar, 2024 | Tow ards Data Science

This article will mainly focus on the 'sepal length' and 'sepal width'
attributes. If you want to try with other datasets, feel free to modify the code
below or skip this part.

from sklearn.datasets import load_iris


data = load_iris()

df = pd.DataFrame(data = data.data, columns = data.feature_names)


df_t = pd.DataFrame(data = data.target, columns = ['label'])

df_iris =…

Create an account to read the full story.


The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Sign up with Google

Sign up with Facebook

Sign up with email

https://tow ardsdatascience.com/data-visualization-cheat-sheet-for-basic-machine-learning-algorithms-770c8e61729d 6/12


3/13/24, 3:49 PM Data Visualization Cheat Sheet for Basic Machine Learning Algorithms | by Boriharn K | Mar, 2024 | Tow ards Data Science

Already have an account? Sign in

Written by Boriharn K Follow

2.9K Followers · Writer for Towards Data Science

a data visualization enthusiast | I also care about environmental issues.

More from Boriharn K and Towards Data Science

https://tow ardsdatascience.com/data-visualization-cheat-sheet-for-basic-machine-learning-algorithms-770c8e61729d 7/12


3/13/24, 3:49 PM Data Visualization Cheat Sheet for Basic Machine Learning Algorithms | by Boriharn K | Mar, 2024 | Tow ards Data Science

Boriharn K in Towards Data Science Leonie Monigatti in Towards Data Science

8 Visualizations with Python to Intro to DSPy: Goodbye Prompting,


Handle Multiple Time-Series Data Hello Programming!
Visualization ideas for coping with How the DSPy framework solves the fragility
overlapping lines in multiple time-series… problem in LLM-based applications by…

· 8 min read · Apr 28, 2022 · 13 min read · Feb 27, 2024

779 7 2.8K 10

Dave Melillo in Towards Data Science Boriharn K in Towards Data Science

Building a Data Platform in 2024 7 Visualizations with Python to


Handle Multivariate Categorical…
https://tow ardsdatascience.com/data-visualization-cheat-sheet-for-basic-machine-learning-algorithms-770c8e61729d 8/12

You might also like