You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears to be an issue in some of the code. When I try to install the package (remotes::install_github("hrbrmstr/weatherkit")), I get a compile error. The issue appears to be in the aaa.R file on line 9. The assignment statement has a backslash that's causing an error.
Here's the error message I get:
Error in parse(outFile) : weatherkit/R/aaa.R:9:14: unexpected input
8:
9: set_names <- \
^
ERROR: unable to collate and parse R files for package 'weatherkit'
The text was updated successfully, but these errors were encountered:
I used the really new \() R function shorthand without forcing the proper R version in the DESCRIPTION. I really shouldn't use that in packages. So I sub'd it for function(). It should work now.
Appears to be an issue in some of the code. When I try to install the package (
remotes::install_github("hrbrmstr/weatherkit")
), I get a compile error. The issue appears to be in the aaa.R file on line 9. The assignment statement has a backslash that's causing an error.Here's the error message I get:
The text was updated successfully, but these errors were encountered: