-
Notifications
You must be signed in to change notification settings - Fork 94
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
Errors with knit #1
Comments
Did you explicitly load googleVis?
|
I'm running into the exact same issue. googleVis was explicitely loaded, and I entered the library(googleVis) command. |
try running all "code chunks" line by line. see also the new files in https://github.com/tevgeniou/BDACaseStudyGA |
Explicitly loading should help, you need to do this in the Markdown document itself: library(googleVis)
local_directory <- getwd()
source(paste(local_directory,"../R/library.R", sep="/"))
gadata <- within(read.csv(paste(local_directory,"../data/GACaseStudyData.csv", sep="/")),rm("X")) t1 <- gvisTable(gadata[1:1000,],options = list(showRowNumber = FALSE, width = 800, height = min(400,27*(nrow(gadata) + 1)), allowHTML = TRUE, page = 'disable'))
print(t1,'chart') |
When I knit GAReport I get the following error message. GoogleVis package is loaded, and the function gvisTable works when I run it in the console. Cannot find help for this error online.
The text was updated successfully, but these errors were encountered: