Sébastien Celles

Results 294 comments of Sébastien Celles

That's done but it should display parameter on plot

Thanks for this PR but it's generaly a best practice to first open an issue to explain the problem. Then, create a PR which fix it (writing Closes #xyz where...

Why not changing def __init__(self, *args, theta_labels=DEFAULT_THETA_LABELS, **kwargs) to def __init__(self, *args, **kwargs) and get `theta_labels` from `kwargs` if it exists or default it to DEFAULT_THETA_LABELS so it will works...

You should also avoid passing list as a default parameter according https://florimond.dev/blog/articles/2018/08/python-mutable-defaults-are-the-source-of-all-evil/ (use None instead)

Hi, maybe you should consider simply draw Weibull without windrose... see https://github.com/python-windrose/windrose/blob/master/windrose/windrose.py#L694

This example http://matplotlib.org/1.4.2/examples/animation/moviewriter.html should help.

Hi @SAKURALFJ Could you be more explicit about what you are calling "display frequency"? Can you show us an example about what is currently displayed and what you are looking...

Might be useful to define a shape (number of rows and number of columns) ``` import math def shape_from(n): sqrt_n = math.sqrt(n) Ncol = math.ceil(sqrt_n) Nrow = math.ceil(n / Ncol)...

ToDo : several pages (figures) see also http://matplotlib.org/examples/pylab_examples/multipage_pdf.html

https://github.com/scls19fr/windrose/blob/master/samples/example_pdf_by.py only scatter plot are supported ![windrose_2011](https://cloud.githubusercontent.com/assets/109167/9517077/6bcf43d2-4cad-11e5-89b4-be3bd819cebe.png) ![windrose_2012](https://cloud.githubusercontent.com/assets/109167/9517078/6bd2aad6-4cad-11e5-8ce3-02046667328a.png) ![windrose_2013](https://cloud.githubusercontent.com/assets/109167/9517080/6bd6b2e8-4cad-11e5-8f13-48bf2c5e0704.png) ![windrose_2014](https://cloud.githubusercontent.com/assets/109167/9517079/6bd4aea8-4cad-11e5-93bc-11d58472858d.png) ![windrose_2015](https://cloud.githubusercontent.com/assets/109167/9517081/6bd738a8-4cad-11e5-9a38-c98df9954284.png)