
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...
seaborn एक python library है जो Matplotlib पर based है यह भी उसी की तरह data का plot, chart बनता है, इसका use data visualization के लिए करते हैं। data analytics के field में इसका use बहुत होता है। seaborn से हम data में strong relationship को आसानी से समझ सकते हैं।
ये python की library है इसलिए हमारे computer में पहले से python install होना जरूरी है, अब Seaborn को install करने के लिए हमें अपने computer में command terminal को open करना है और उसमें pip install seaborn लिखकर enter press कर देना है अब कुछ ही time में Seaborn हमारे computer में install हो जाएगा।
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 किया जा सकता है।
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 करते है ।
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Python String...
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...
Python Tutorial Python Introduction Identation & Comments Python Variable Python Data Type Python Operators Conditional Statements Python Loops Hamburger Toggle...
Scikit-learn Tutorial Scikit-learn Hamburger Toggle Menu Edit Template Scikit learn What is Scikit-learn Scikit learn एक python library है जिसका...