Skip to content

Commit 77b0523

Browse files
srvasudetensorflower-gardener
authored andcommitted
Update seaborn call in colab notebook to explicitly use kwargs.
PiperOrigin-RevId: 490603624
1 parent a8bdd0f commit 77b0523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_probability/examples/jupyter_notebooks/A_Tour_of_TensorFlow_Probability.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@
914914
}
915915
],
916916
"source": [
917-
"g = sns.jointplot(samples[:, 0], samples[:, 1], kind='scatter')\n",
917+
"g = sns.jointplot(x=samples[:, 0], y=samples[:, 1], kind='scatter')\n",
918918
"plt.show()"
919919
]
920920
},

0 commit comments

Comments
 (0)