Update app.py
Browse files
app.py
CHANGED
@@ -44,8 +44,7 @@ def app():
|
|
44 |
ax.tick_params(axis='x', rotation=45)
|
45 |
|
46 |
if "Quantity of Pizzas" in plot["title"]:
|
47 |
-
|
48 |
-
sns.countplot(data_aux=df, x=plot["x"], hue=plot["hue"], ax=ax)
|
49 |
|
50 |
|
51 |
if "Monthly Revenue" in plot["title"]:
|
|
|
44 |
ax.tick_params(axis='x', rotation=45)
|
45 |
|
46 |
if "Quantity of Pizzas" in plot["title"]:
|
47 |
+
sns.countplot(data=df, x=plot["x"], hue=plot["hue"], ax=ax)
|
|
|
48 |
|
49 |
|
50 |
if "Monthly Revenue" in plot["title"]:
|