Skip to content

Instantly share code, notes, and snippets.

@pranjalAI
Created July 23, 2021 09:26
Show Gist options
  • Save pranjalAI/12dc0d602dcefff432c19c4977e03704 to your computer and use it in GitHub Desktop.
Save pranjalAI/12dc0d602dcefff432c19c4977e03704 to your computer and use it in GitHub Desktop.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
dataset = sns.load_dataset("tips")
sns.relplot(
data=dataset,
x="total_bill", y="tip", col="time",
hue="smoker", style="smoker", size="size",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment