इंटरमीडिएट Data Visualization with Seaborn
Chris Moffitt
Instructor

matplotlib Seaborn के विज़ुअलाइज़ेशन के लिए बेस बिल्डिंग ब्लॉक्स देता हैimport matplotlib.pyplot as plt import pandas as pddf = pd.read_csv("wines.csv")fig, ax = plt.subplots() ax.hist(df['alcohol'])

pandas डेटा विश्लेषण के लिए एक मूलभूत लाइब्रेरी हैimport pandas as pddf = pd.read_csv("wines.csv") df['alcohol'].plot.hist()

histplot पहले दिखाए गए histogram जैसा हैimport seaborn as snssns.histplot(df['alcohol'])

displot वितरण प्लॉट्स के लिए histplot और अन्य फंक्शंस का लाभ उठाता हैimport seaborn as snssns.displot(df['alcohol'], kind='kde')

df['alcohol'].plot.hist()

sns.displot(df['alcohol'])

इंटरमीडिएट Data Visualization with Seaborn