You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this excellent package. I like the convenience of Seaborn and use it regularly.
But I do have a question. Is there a reason why the Seaborn functions lineplot and scatterplot are not included? For example, the following scatterplot code errors:
using Seaborn; scatterplot(rand(50), rand(50))
whereas using PyCall works for scatterplots:
using PyCall; snspy = pyimport("seaborn"); snspy.scatterplot(rand(50), rand(50))
The text was updated successfully, but these errors were encountered:
Only since no one has bothered to add it. Do you want to submit a pull request? If you look at the existing code, I think you'll find it quite easy to see how to add it.
Thanks for this excellent package. I like the convenience of Seaborn and use it regularly.
But I do have a question. Is there a reason why the Seaborn functions
lineplot
andscatterplot
are not included? For example, the following scatterplot code errors:using Seaborn; scatterplot(rand(50), rand(50))
whereas using PyCall works for scatterplots:
using PyCall; snspy = pyimport("seaborn"); snspy.scatterplot(rand(50), rand(50))
The text was updated successfully, but these errors were encountered: