Skip to content
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

Incorrect number of arguments (5), expecting 4 for 'approxtest' #186

Closed
fniephaus opened this issue May 30, 2021 · 1 comment
Closed

Incorrect number of arguments (5), expecting 4 for 'approxtest' #186

fniephaus opened this issue May 30, 2021 · 1 comment
Labels

Comments

@fniephaus
Copy link
Member

(Tested on macOS Big Sur with GraalVM CE 21.1.0.)

Repro

R -e 'install.packages("ggplot2")
R --jvm --polyglot

then

library(ggplot2)
array <- eval.polyglot('js', '[4,1,3,1,4,1,4,2,5]')
size <- 9
values <- data.frame(x=1:size, y=array)
ggplot(values, aes(x=x, y=y, color=y)) +
    ggtitle("Foo") + labs(x="time", y="size") +
    theme(axis.text.x=element_blank()) +
    geom_point(size = .5, show.legend = FALSE) +
    scale_color_gradient(low = "#0091ff", high = "#f0650e")

Error

Error: Error in .Call(C_ApproxTest, x, y, method, f, na.rm) :
Incorrect number of arguments (5), expecting 4 for 'approxtest'

Related Info

approxfun() and approx() gain a new argument na.rm defaulting to true. If set to false, missing y values now propagate into the interpolated values.

Source

Workaround

Revert to CRAN snapshot from 2019-11-03 and reinstall ggplot2.

@fniephaus fniephaus added the bug label May 30, 2021
@Akirathan
Copy link
Contributor

Hello @fniephaus. This is a known issue of ggplot2 version 3.3.3 that is in the newer 2021-02-01 MRAN snapshot. We are currently working on a fix for this package and it may get into GraalVM 21.3.0 release on the 19th of October.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants