DataTaunew | comments | leaders | submitlogin
2 points by pmigdal 3229 days ago | link | parent

I love seaborn for easiness to make nice graphs out of box, but there are still things which make it more complicated than it should be:

- bad handling of missing data (usually resulting in undecypherable error messages),

- parameters like "size" only for some plots (why?),

- some issues on the line of "str vs numeric".

In any case, I am using it, teaching others to do so and wishing it bright future.

But still, more than often I analyze data in Python and then

%%R -i df

ggplot(df, ...) + ...




RSS | Announcements