Seaborn Tutorial
Edit Template
Edit Template
Seaborn Tutorial
Edit Template

Seaborn

What is Seaborn

seaborn  एक python library है जो Matplotlib पर based है यह भी उसी की तरह data का plot, chart बनता है, इसका use data visualization के लिए करते हैं। data analytics के field में इसका use बहुत होता है।  seaborn से हम data में strong relationship को आसानी से समझ सकते हैं।

How to Install Seaborn

ये python की library है इसलिए हमारे computer में पहले से python install होना जरूरी है, अब Seaborn को install करने के लिए हमें अपने computer में command terminal को open करना है और उसमें pip install seaborn लिखकर enter press कर देना है अब कुछ ही time में Seaborn हमारे computer में install हो जाएगा।

Some Important Features of Seaborn

Attractive Plot : seaborn में हम professional and attractive plot बना सकते हैं।

Color Palette : seaborn में color paletteका feature दिए गए हैं, जिससे हम अपने plot को colorful design दे सकते हैं।

Statistical Insights : seaborn के use से data के pattern and relationship को आसानी से समझा जा सकता है।

integration  : seaborn को pandas के साथ आसानी से use किया जा सकता है।

Basic Example of Seaborn

import seaborn as sns
from seaborn import load_dataset

# Built-in dataset
iris = load_dataset('iris')

# Pair plot for relationships
sns.pairplot(iris, hue='species')
plt.show()

import : python library को अपने program मे use करने के लिए उसे अपने program मे import करना होता है, इसके लिए “import” use करते है। जैसा की इस example code के 1st line मे हमने Seaborn को import किया है import seaborn as sns
यहाँ पर हमने “as” का use करके matplotlib को एक short form दिया है sns, इससे होता ये है की अब जहां भी हमे matplotlib लिखने की जरूरत होगी तो वह हम सिर्फ sns लिखेंगे हमारा काम हो जाएगा । आप sns के जगह कुछ भी ले सकते है but वो meaningful रहे, आम तौर पर हम sns का ही use करते है ।

Add a comment...

Your email address will not be published. Required fields are marked *

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Fundamentals
  • DSA with Python
  • Excel
  • Exercise
  • Git & Github
  • Machine Learning
  • Matplotlib
  • Natural Language Processing
  • NumPy
  • Operating System
  • Pandas-s
  • Power BI
  • Python Tutorial
  • Scikit-learn
  • Seaborn
  • SQL & MySQL
Python List

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python String

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...

Python Loops

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...

Conditional Statements

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...

Python Operators

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...

Python Data Type

Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...

Scikit-learn

Scikit-learn Tutorial Scikit-learn Hamburger Toggle Menu Edit Template Scikit learn What is Scikit-learn Scikit learn एक python library है जिसका...

Pandas

Pandas Tutorial Pandas Hamburger Toggle Menu Edit Template Pandas What is Pandas pandas  एक python library है, जिसका use हम...

NumPy

NumPy Tutorial NumPy Hamburger Toggle Menu Edit Template NumPy What is NumPy matplotlib का use हम data visualization के लिए...

Edit Template
Scroll to Top