A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel



 
 
Thread Tools Display Modes
  #1  
Old January 27th, 2006, 08:47 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel

How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?
  #2  
Old January 27th, 2006, 09:25 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel

In article , Wes12
@discussions.microsoft.com says...
How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?

You have to convert the data to (x,y) with the formulas x=r*cost(theta) and
y=r*sin(theta) where theta is in radians.

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
  #3  
Old January 27th, 2006, 10:57 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Ex

Thanks, Good suggestion.

"Tushar Mehta" wrote:

In article , Wes12
@discussions.microsoft.com says...
How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?

You have to convert the data to (x,y) with the formulas x=r*cost(theta) and
y=r*sin(theta) where theta is in radians.

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

  #4  
Old January 28th, 2006, 01:04 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel

Hi,

These maybe of interest to you.
http://www.andypope.info/charts/polarplot2.htm
http://www.andypope.info/charts/polarplot.htm

Cheers
Andy

Wes12 wrote:
How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?


--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
  #5  
Old January 28th, 2006, 03:14 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel

Hi Andy,

I've shied away from using a Radar plot for parametric plots because I've
always seen it as more like a Line chart turned into a circle rather than a
XY Scatter chart.

But, as you demonstrate, it does have some advantages. There's no need to
specify theta values (though, that can be a disadvantage), and the ability
to create a filled-in plot, something not (easily?) possible with a XY
chart.

The big disadvantage is that whatever one wants to do must be accomplished
in theta = 0 to 2*Pi -- though, I am hesitant to make a claim that you might
decide to prove wrong. {grin}

That precludes something like the butterfly plot given by

x=COS(t)*(EXP(COS(t))-2*COS(4*t)-SIN(t/12)^5)
y=SIN(t)*(EXP(COS(t))-2*COS(4*t)-SIN(t/12)^5)

for 0= t = 24*Pi

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article ,
says...
Hi,

These maybe of interest to you.
http://www.andypope.info/charts/polarplot2.htm
http://www.andypope.info/charts/polarplot.htm

Cheers
Andy

Wes12 wrote:
How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?



  #6  
Old January 28th, 2006, 03:31 PM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Excel

Hi Tushar,

You are correct, any plot which includes values greater the 2*Pi
requires the use of multiple series.

Cheers
Andy

Tushar Mehta wrote:
Hi Andy,

I've shied away from using a Radar plot for parametric plots because I've
always seen it as more like a Line chart turned into a circle rather than a
XY Scatter chart.

But, as you demonstrate, it does have some advantages. There's no need to
specify theta values (though, that can be a disadvantage), and the ability
to create a filled-in plot, something not (easily?) possible with a XY
chart.

The big disadvantage is that whatever one wants to do must be accomplished
in theta = 0 to 2*Pi -- though, I am hesitant to make a claim that you might
decide to prove wrong. {grin}

That precludes something like the butterfly plot given by

x=COS(t)*(EXP(COS(t))-2*COS(4*t)-SIN(t/12)^5)
y=SIN(t)*(EXP(COS(t))-2*COS(4*t)-SIN(t/12)^5)

for 0= t = 24*Pi


--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
  #7  
Old January 29th, 2006, 12:29 AM posted to microsoft.public.excel.charting
external usenet poster
 
Posts: n/a
Default Plot R-Theta [angle (0~360 degrees) and amplitude] chart in Ex

Thanks, Great work. I have already satisfied my need by building a
bare-bones chart using the r*sin(a) and r*cons(a) method. Just wanted to
plot a scatter chart of wind speed vs. compass direction from my new weather
station. I don't know if this will work, but you can try viewing it as a .jpg
picture at ftp://wboyer.net/Polar%20Chart/ .

"Andy Pope" wrote:

Hi,

These maybe of interest to you.
http://www.andypope.info/charts/polarplot2.htm
http://www.andypope.info/charts/polarplot.htm

Cheers
Andy

Wes12 wrote:
How do you plot an R-Theta chart in Excel, i.e. a circular chart with the
independent axis (angle) in degrees from 0 to 360 degrees and amplitude as
the radial distance from the center point?


--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:20 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.