Dear R users I am looking for functions that can plot 3 dimensional figures *with logarithmic axes*. I tried scatterplot3d (under package scatterplot3d) but the log parameter is not implemented (although "log" appears in the parameter list). Does anyone has some suggestions? Thanks a lot Austin
plot 3dimensional points with "log" axes
2 messages · Hung-Hsuan Chen (Sean), Duncan Murdoch
On 3/31/2008 7:05 AM, Hung-Hsuan Chen (Sean) wrote:
Dear R users I am looking for functions that can plot 3 dimensional figures *with logarithmic axes*. I tried scatterplot3d (under package scatterplot3d) but the log parameter is not implemented (although "log" appears in the parameter list). Does anyone has some suggestions? Thanks a lot
A general way to do this sort of thing is to take the logs yourself, and get the general purpose function to draw without axes. You can then add ticks, etc. after the fact. Duncan Murdoch