JointGrid और jointplot का उपयोग

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

Chris Moffitt

Instructor

JointGrid() ओवरव्यू

JointGrid का ओवरव्यू

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

बेसिक JointGrid

g = sns.JointGrid(data=df, x="Tuition", y="ADM_RATE_ALL") 
g.plot(sns.regplot, sns.histplot)

JointGrid उदाहरण

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

एडवांस्ड JointGrid

g = sns.JointGrid(data=df, x="Tuition", y="ADM_RATE_ALL") 
g = g.plot_joint(sns.kdeplot)
g = g.plot_marginals(sns.kdeplot, shade=True)

टिप्पणी सहित JointGrid उदाहरण

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

jointplot()

sns.jointplot(data=df, x="Tuition", y="ADM_RATE_ALL", kind='hex')

jointplot उदाहरण

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

jointplot को कस्टमाइज़ करना

g = (sns.jointplot(x="Tuition",
                   y="ADM_RATE_ALL",
                   kind="scatter",
                   xlim=(0, 25000),
                   data=df.query('UG < 2500 &
                   Ownership == "Public"'))
    .plot_joint(sns.kdeplot))
इंटरमीडिएट Data Visualization with Seaborn

jointplot को कस्टमाइज़ करना

jointplot

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

अभ्यास करते हैं!

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

Preparing Video For Download...