Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ def check_model_drift():
|
|
81 |
def plot_target_distributions():
|
82 |
sample_df = get_data()
|
83 |
|
84 |
-
figure, axes = plt.subplots(2, 1, figsize=(9,
|
85 |
sns.countplot(x=ytrain, stat='proportion', ax=axes[0])
|
86 |
axes[0].set_title("Distribution of targets in training data")
|
87 |
|
|
|
81 |
def plot_target_distributions():
|
82 |
sample_df = get_data()
|
83 |
|
84 |
+
figure, axes = plt.subplots(2, 1, figsize=(9, 7))
|
85 |
sns.countplot(x=ytrain, stat='proportion', ax=axes[0])
|
86 |
axes[0].set_title("Distribution of targets in training data")
|
87 |
|