This tag is for rose plots (coxcomb), wind rose plots, and polar bar plots. Use the windrose tag for questions about that python package.
Questions tagged [rose-plot]
52 questions
2
votes
1 answer
Expand plot region in windroses using ggplot 2 and polar coordination system
I am looking for a solution for the following problem:
Currently I am producing a wind rose plot with ggplot2 following the script provided by Andy Clifton over here.
This works perfectly and I am very thankful for the script provided. However I am…

Sarina
- 548
- 3
- 10
2
votes
2 answers
An R plot is not displayed completely using circular R package
I have circular data of wind direction in radians. Here we have part of November directions at 10 meters:
nov<-c(5.4977871, 5.4977871, 5.4977871 ,5.4977871, 5.4977871 ,5.4977871, 5.4977871, 5.1050881, 5.4977871, 5.4977871, 5.8904862, 5.8904862…
user3953420
2
votes
1 answer
How to create circular time plots in R with 1 minute intervals
I am currently analysing data examining the behavioural response of BtRw to aerial survey based on time-lapse photography. Below is a short example of the data frames that I have imported into R.
Events are classified as the number of BtRw that…

user3750840
- 21
- 2
2
votes
1 answer
Plot vector (or arc) onto a rose plot. MATLAB
I have two datasets. One detailing a list of angles (which I am plotting onto a rose plot):
angles
-0.8481065519
0.0367932161
2.6273740453
...
n
The other, detailing directional statistics from this group of…

MACooperr
- 75
- 1
- 8
2
votes
1 answer
Circular time plots in R with stacked rose
I have a data frame imported in excel with the following values:
> dt <- read.csv(file="teste1.csv",head=TRUE,sep=";")
> dt
hour occur time tt
1 1 one 00:00:59 59
2 2 one 08:40:02 31202
3 3 one 07:09:59 25799
4 4 …

Roben Seqer
- 23
- 1
- 4
1
vote
2 answers
Change properties of rose plot
I use the function rose2 in my script in order to plot a rose plot. I am working with Matlab 2016a and thus still use the rose function. I use rose2 in order to be able to set the maximum value for the r axis and fill the triangles.
I use "findall"…

Lisa
- 13
- 4
1
vote
1 answer
How the wind rose varies by month: Package openair
I have date for 8 years. Sample of my data:
structure(list(Data = c("1/1/2015", "1/2/2015", "1/3/2015", "1/4/2015",
"1/5/2015", "1/6/2015", "1/7/2015", "1/8/2015", "1/9/2015", "1/10/2015",
"1/11/2015", "1/12/2015", "1/13/2015", "1/14/2015",…

Elena Iakimova
- 57
- 6
1
vote
2 answers
How to change y axis from count to percentage in rose diagram in ggplot?
I created a rose diagram based on the example here, but I need the y axis to show each bin as a percentage of the total. The data I am actually using is a vector of the different orientations of a group of animals. My example code currently would be…

Liam Dickson
- 11
- 2
1
vote
1 answer
"ValueError: Invalid RGBA argument: None" when plotting via matplotlib ax.bar() for creating a windrose using custom colormaps
The goal is to create a wind rose like in this graphic:
The error itself occurs upon saving the plot via fig.savefig(), but I got so far to realize that the error lies in the colormaps employed (e.g. taking into account this discussion).
The…

Andreas L.
- 3,239
- 5
- 26
- 65
1
vote
1 answer
WINDROSE and a GRAPH in the SAME FIGURE
I'd like to put in the same figure a normal line plot and a windrose, but I can't manage. My result is 2 figures one with the line plot and an empty plot and the second figure is the windrose, how can i put together, in the same figure. The code…

renton
- 51
- 5
1
vote
3 answers
How to save a windrose plot
I plotted my wind data (direction and speed) with the windrose module https://windrose.readthedocs.io/en/latest/index.html.
The results look nice but I cannot export them as a figure (png, eps, or anything to start with) because the result is a…

Vroni
- 347
- 1
- 5
- 16
1
vote
1 answer
Python Windrose Legend Labels
I am trying to take full control of the legend in the Windrose; the legend is controlled by the bins, which can be called using the ax.info['bins']. However, I want to change the name of the bin groups.
Looking online, the only solution I found was…

Aly Abdelaziz
- 292
- 4
- 24
1
vote
1 answer
Plot wind rose in R?
I have a simple Frequency and mean wind speed in 12 sector. How do I plot this data as wind rose (I do not want to use plot_ly) !
DF = structure(list(Sector = c("0-N", "1-NNE", "2-ENE", "3-E", "4-ESE", "5-SSE",
"6-S",…

Haribo
- 2,071
- 17
- 37
1
vote
1 answer
Tkinter canvas to plot windrose
Having some trouble with plotting a Windrose within a tkinter window. I cant get the windrose to show by itself, the window shows another grid behind the plot(see picture below). Is there some way I could get this to only show the windrose without…

Rodrigo Prodohl
- 133
- 8
1
vote
1 answer
How to plot probability density with rose plot in matlab
I am trying to plot normalized, probability histogram with rose function in matlab (I can't use polarhistogram because I do not have the latest version of Matlab. My version is 2015b).
In a normal histogram, I usually do it like this:
h =…

ana
- 79
- 4