Skip to content

Commit 251b0d6

Browse files
authored
Fix formatting
1 parent 427dff0 commit 251b0d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/en/tutorials/structured_data/imbalanced_data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,11 +345,11 @@
345345
"pos_df = pd.DataFrame(train_features[ bool_train_labels], columns=train_df.columns)\n",
346346
"neg_df = pd.DataFrame(train_features[~bool_train_labels], columns=train_df.columns)\n",
347347
"\n",
348-
"sns.jointplot(x = pos_df['V5'], y = pos_df['V6'],\n",
348+
"sns.jointplot(x=pos_df['V5'], y=pos_df['V6'],\n",
349349
" kind='hex', xlim=(-5,5), ylim=(-5,5))\n",
350350
"plt.suptitle(\"Positive distribution\")\n",
351351
"\n",
352-
"sns.jointplot(x = neg_df['V5'], y = neg_df['V6'],\n",
352+
"sns.jointplot(x=neg_df['V5'], y=neg_df['V6'],\n",
353353
" kind='hex', xlim=(-5,5), ylim=(-5,5))\n",
354354
"_ = plt.suptitle(\"Negative distribution\")"
355355
]

0 commit comments

Comments
 (0)