I have a data frame "df" with three columns: distance, azimuth, intensity. Through plotrix:polar.plot I got a plot using the following code
polar.plot(df$distance, df$azimuth, radial.lim=c(0,450),start=90,rp.type = "s", clockwise=TRUE, point.col=4, cex = 1.2)
Is there a way to have the size (or color) of symbols changing with the "intensity" column value?
since I didn't find any "direct" solution I have divided the dataframe in several dataframes using subset() and after I plotted every dataframe with different "cex"/"point.col" setting to "TRUE" the "add" parameter.
crude and effective