a = {"key":1, "key2":2, "key3":3}
a
{'key': 1, 'key2': 2, 'key3': 3}
import seaborn as sns
import pandas as pd
import numpy as np
data = pd.read_csv("tips.csv")
data.head()
sns.countplot(x="total_bill", data=data, hue="sex", palette="gist_rainbow_r")
<matplotlib.axes._subplots.AxesSubplot at 0x21c504f4780>
sns.jointplot(x="total_bill", y="tip", data=data, kind="hex", color=)
<seaborn.axisgrid.JointGrid at 0x21c4f95c630>
sns.pairplot(data=data, palette="")
<seaborn.axisgrid.PairGrid at 0x21c51f71518>
sns.rugplot(data["total_bill"])
<matplotlib.axes._subplots.AxesSubplot at 0x21c50294898>
sns.boxplot(x="sex",y="total_bill",data=data, palette="winter")
<matplotlib.axes._subplots.AxesSubplot at 0x21c52043cf8>
data.describe()
data["total_bill"].plot.pie(y="sex")
<matplotlib.axes._subplots.AxesSubplot at 0x21c52bf5fd0>
data["size"]
0 2
1 3
2 3
3 2
4 4
5 4
6 2
7 4
8 2
9 2
10 2
11 4
12 2
13 4
14 2
15 2
16 3
17 3
18 3
19 3
20 2
21 2
22 2
23 4
24 2
25 4
26 2
27 2
28 2
29 2
..
214 3
215 2
216 5
217 2
218 2
219 4
220 2
221 2
222 1
223 3
224 2
225 2
226 2
227 4
228 2
229 2
230 4
231 3
232 2
233 2
234 2
235 2
236 2
237 2
238 3
239 3
240 2
241 2
242 2
243 2
Name: size, Length: 244, dtype: int64
import jovian
jovian.commit()
[jovian] Saving notebook..