Difference between revisions of "Polar rose plot"

From Christoph's Personal Wiki
Jump to: navigation, search
(External links)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
A '''polar rose plot''' (or '''roseplot''' / '''rose diagram''' and sometimes a '''rhodonea plot''') is an angle histogram showing the distribution of values grouped according to their numeric range (viewed as a "polar plot"). It is similar to a [[wikipedia:Rose_%28mathematics%29|polar rose]] (i.e. with <tt>r = cos(k*&theta;</tt>)) but not necessarily symmetric, as the symmetry (or "direction" of petals) is entirely dependant on the input data.
+
A '''polar rose plot''' (or '''roseplot''' / '''rose diagram''' and sometimes a '''rhodonea plot''') is an angle histogram showing the distribution of values grouped according to their numeric range (viewed as a "polar plot"). It is similar to a [[wikipedia:Rose_%28mathematics%29|polar rose]] (i.e. with <tt>r = cos(''k''*&theta;</tt>)) but not necessarily symmetric, as the symmetry (or "direction" of petals) is entirely dependent on the input data.
  
 
[[Image:Roseplot.png|right|thumb|Example roseplot - taken from GenomeAtlas by CBS]]
 
[[Image:Roseplot.png|right|thumb|Example roseplot - taken from GenomeAtlas by CBS]]
Line 10: Line 10:
 
==Equations==
 
==Equations==
 
The polar equation of the rose is
 
The polar equation of the rose is
  r=&alpha;*sin(''n''&theta;)
+
  r = &alpha;*sin(''n''&theta;)
 
  ~OR~
 
  ~OR~
  r=&alpha;*cos(''n''&theta;)
+
  r = &alpha;*cos(''n''&theta;)
 
If ''n'' is odd, the rose is ''n''-petalled. If ''n'' is even, the rose is 2''n''-petalled. Integer values of ''n'' give the kind of roseplots described in this article.
 
If ''n'' is odd, the rose is ''n''-petalled. If ''n'' is even, the rose is 2''n''-petalled. Integer values of ''n'' give the kind of roseplots described in this article.
 +
 +
==Related [[R programming language|R]] packages==
 +
*[http://cran.r-project.org/web/packages/climatol/index.html climatol] &mdash; see '''rosavent''': Wind-rose plot
  
 
==External links==
 
==External links==
Line 19: Line 22:
 
*[http://www25.brinkster.com/denshade/PolarFlower.html Applet to create rose with k parameter]
 
*[http://www25.brinkster.com/denshade/PolarFlower.html Applet to create rose with k parameter]
 
*[http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/rose.html&http://www.mathworks.com/cgi-bin/texis/webinator/search/?db=MSS&prox=page&rorder=750&rprox=750&rdfreq=500&rwfreq=500&rlead=250&sufs=0&order=r&is_summary_on=1&ResultCount=10&query=rose&submitButtonName=Search MATLAB Function Reference - rose]
 
*[http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/rose.html&http://www.mathworks.com/cgi-bin/texis/webinator/search/?db=MSS&prox=page&rorder=750&rprox=750&rdfreq=500&rwfreq=500&rlead=250&sufs=0&order=r&is_summary_on=1&ResultCount=10&query=rose&submitButtonName=Search MATLAB Function Reference - rose]
*[http://mensch.org/vplot/windrose/ Wind rose] &mdash; include a [[Python]] script and examples.
+
*[http://mensch.org/vplot/windrose/ Wind rose] &mdash; includes a [[Python]] script and examples.
 
*[http://www.windpower.org/en/tour/wres/roseplot.htm Wind Rose Plotter Programme]
 
*[http://www.windpower.org/en/tour/wres/roseplot.htm Wind Rose Plotter Programme]
 
*[[wikipedia:Polar coordinate system]]
 
*[[wikipedia:Polar coordinate system]]
 
*[[wikipedia:List of canonical coordinate transformations]]
 
*[[wikipedia:List of canonical coordinate transformations]]
  
{{stub}}
 
 
[[Category:Bioinformatics]]
 
[[Category:Bioinformatics]]
 
[[Category:Graphics software]]
 
[[Category:Graphics software]]
 
== Headline text ==
 

Latest revision as of 19:19, 5 July 2012

A polar rose plot (or roseplot / rose diagram and sometimes a rhodonea plot) is an angle histogram showing the distribution of values grouped according to their numeric range (viewed as a "polar plot"). It is similar to a polar rose (i.e. with r = cos(k)) but not necessarily symmetric, as the symmetry (or "direction" of petals) is entirely dependent on the input data.

File:Roseplot.png
Example roseplot - taken from GenomeAtlas by CBS

A roseplot is useful for viewing the "direction" of input data. It is commonly used for plotting the daily (or yearly, etc.) average wind direction at a given location (sometimes called a "wind direction plot" or a "wind rose").

Roseplots display degree, radian, or grad data versus a radial axis. Like histograms, roseplots display statistical data, showing the number of occurrences of an event that fall within a specific angular region.

I routinely use roseplots in my bioinformatics research. They are especially useful for getting an overview of amino acid- or nucleotide-usage in a given genome or sequence (see figure).

Equations

The polar equation of the rose is

r = α*sin(nθ)
~OR~
r = α*cos(nθ)

If n is odd, the rose is n-petalled. If n is even, the rose is 2n-petalled. Integer values of n give the kind of roseplots described in this article.

Related R packages

  • climatol — see rosavent: Wind-rose plot

External links