-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scatter3d how to manually edit axis #97
Comments
See ?scatterplot3js -- the x.ticklabs, y.ticklabs, z.ticklabs (and
also num.ticks) options...
…On 8/17/22, emmabrouwer ***@***.***> wrote:
Hi,
I am using the scatter3d function
(https://www.rdocumentation.org/packages/car/versions/3.1-0/topics/scatter3d).
I was wondering how I could manually edit my axis scale and ticks.
(axis.ticks seems to only turn on or off the ticks but not give the option
to change them)
Thanks,
--
Reply to this email directly or view it on GitHub:
#97
You are receiving this because you are subscribed to this thread.
Message ID: ***@***.***>
|
Here is a basic example that changes only the x-axis tick labels:
```{r}
z <- seq(-10, 10, 0.1)
x <- cos(z)
y <- sin(z)
scatterplot3js(x, y, z, color=rainbow(length(z)))
# With custom x tick labels:
scatterplot3js(x, y, z, color=rainbow(length(z)), num.ticks=c(4,6,6),
x.ticklabs=letters[1:4])
```
…On 8/19/22, Bryan Lewis ***@***.***> wrote:
See ?scatterplot3js -- the x.ticklabs, y.ticklabs, z.ticklabs (and
also num.ticks) options...
On 8/17/22, emmabrouwer ***@***.***> wrote:
> Hi,
>
> I am using the scatter3d function
> (https://www.rdocumentation.org/packages/car/versions/3.1-0/topics/scatter3d).
> I was wondering how I could manually edit my axis scale and ticks.
> (axis.ticks seems to only turn on or off the ticks but not give the
> option
> to change them)
>
> Thanks,
>
>
>
> --
> Reply to this email directly or view it on GitHub:
> #97
> You are receiving this because you are subscribed to this thread.
>
> Message ID: ***@***.***>
|
Hi, Thank you for your comment. |
Sorry can't help you there, I don't know anything about that package.
This issue list is for the threejs package.
…On 8/19/22, petroeb ***@***.***> wrote:
Hi, Thank you for your comment.
When using scatterplot3d this indeed works well but with the scatter3d
function
(https://www.rdocumentation.org/packages/car/versions/3.1-0/topics/scatter3d)
this does not seem to work.
--
Reply to this email directly or view it on GitHub:
#97 (comment)
You are receiving this because you commented.
Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am using the scatter3d function (https://www.rdocumentation.org/packages/car/versions/3.1-0/topics/scatter3d). I was wondering how I could manually edit my axis scale and ticks. (axis.ticks seems to only turn on or off the ticks but not give the option to change them)
Thanks,
The text was updated successfully, but these errors were encountered: