0% found this document useful (0 votes)
28 views3 pages

Data Visualization Cheat Sheet For Basic Machine Learning Algorithms - by Boriharn K - Mar, 2024 - Towards Data Science-2

The document is an article from Towards Data Science that provides a data visualization cheat sheet for basic machine learning algorithms. It focuses on using the 'iris' dataset to demonstrate various visualizations. The full article is only available to Medium members. The author, Boriharn K, is a data visualization enthusiast and writer for Towards Data Science. The article may include visualizations for handling time series and categorical data.

Uploaded by

jefferyleclerc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views3 pages

Data Visualization Cheat Sheet For Basic Machine Learning Algorithms - by Boriharn K - Mar, 2024 - Towards Data Science-2

The document is an article from Towards Data Science that provides a data visualization cheat sheet for basic machine learning algorithms. It focuses on using the 'iris' dataset to demonstrate various visualizations. The full article is only available to Medium members. The author, Boriharn K, is a data visualization enthusiast and writer for Towards Data Science. The article may include visualizations for handling time series and categorical data.

Uploaded by

jefferyleclerc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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