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
Thank you very much for your development of this package. I tried to clone the repo to implement the example surveys you developed and am running into a few errors:
When I try to run the audience_costs app, I receive the following error after answering a few questions:
> shiny::runApp('audience_costs')
Listening on http://127.0.0.1:6204
[1] "Initializing..."
pid vote2 reg mot pow res treat outcome
"Democrat" "" "" "" "" "" "" ""
[1] 2
pid vote2 reg mot pow res treat outcome
"Democrat" "Yes" "" "" "" "" "" ""
[1] 3
Warning in gzfile(file, "rb") :
cannot open compressed file 'droptoken.rds', probable reason 'No such file or directory'
Warning: Error in gzfile: cannot open the connection
115: gzfile
114: readRDS
113: <reactive:dynamicUi> [D:\Documents\GitHub\shinySurveys\audience_costs/server.R#133]
97: dynamicUi
96: renderUI [D:\Documents\GitHub\shinySurveys\audience_costs/server.R#98]
95: func
82: renderFunc
81: output$MainAction
1: shiny::runApp
It appears that it is looking for the file 'droptoken.rds', but it does not exist in the repo. I receive a similar error in the media_bias app:
> runApp('media_bias')
Listening on http://127.0.0.1:4418
Loading required package: tm
Warning: package ‘tm’ was built under R version 4.0.5
Loading required package: NLP
Warning: package ‘NLP’ was built under R version 4.0.3
Loading required package: openNLP
Warning: package ‘openNLP’ was built under R version 4.0.3
Error: package or namespace load failed for ‘openNLP’:
.onLoad failed in loadNamespace() for 'rJava', details:
call: fun(libname, pkgname)
error: JAVA_HOME cannot be determined from the Registry
Warning in gzfile(file, "rb") :
cannot open compressed file 'droptoken.rds', probable reason 'No such file or directory'
Warning: Error in gzfile: cannot open the connection
51: gzfile
50: readRDS
Error in gzfile(file, "rb") : cannot open the connection
When running the compactness app, I receive the following error:
> shiny::runApp('compactness')
Loading required package: shiny
Listening on http://127.0.0.1:4418
Warning: package ‘shinyjqui’ was built under R version 4.0.5
Warning: package ‘shinyjs’ was built under R version 4.0.5
Need Shiny help? I'm available for consulting:
https://attalitech.com
Attaching package: ‘shinyjs’
The following object is masked from ‘package:shiny’:
runExample
The following objects are masked from ‘package:methods’:
removeClass, show
Warning: Error in includeJqueryUI: could not find function "includeJqueryUI"
75: dots_list
74: div
72: fluidPage
I have installed shinyjqui, so I'm not sure why I'm receiving this error.
I receive the following error after answering a few questions in the info_battery app:
> runApp('info_battery')
Listening on http://127.0.0.1:4418
Attaching package: ‘rsconnect’
The following object is masked from ‘package:shiny’:
serverInfo
Warning: package ‘digest’ was built under R version 4.0.3
Warning: package ‘shinyBS’ was built under R version 4.0.5
Warning: package ‘rdrop2’ was built under R version 4.0.5
Warning: package ‘catSurv’ was built under R version 4.0.5
Loading required package: ltm
Loading required package: MASS
Loading required package: msm
Loading required package: polycor
##
## Support provided by the U.S. National Science Foundation
## (Grant SES-1558907)
##
[1] 1
[1] "Initializing..."
[1] 2
pid vote2 npi1 npi2 npi3 npi4 npi5 score
"Democrat" "" "" "" "" "" "" ""
[1] 3
pid vote2 npi1 npi2 npi3 npi4 npi5 score
"Democrat" "Yes" "" "" "" "" "" ""
[1] 4
Warning: Error in validObject: invalid class “Cat” object: slots in class definition but not in object: "ids"
1: runApp
When running the rollcall_lookup app, I receive the following error:
> shiny::runApp('rollcall_lookup')
Loading required package: shiny
Listening on http://127.0.0.1:4306
Attaching package: ‘rsconnect’
The following object is masked from ‘package:shiny’:
serverInfo
[1] "Initializing..."
[1] "Democrat" NA NA NA NA NA NA NA NA NA NA NA
[13] NA NA NA NA NA NA NA NA
[1] 2
[1] "Finished with covariates"
Warning: Error in geocode: could not find function "geocode"
1: shiny::runApp
I'm not sure which package to install for the geocode() function.
Thanks for pointing these out! I'm not actively maintaining this repo, but if there are particular applications you'd like to get up and running, I am happy to help out.
-Regarding droptoken.rds, this is an object that you'll create on your own such that the results from the Shiny survey are automatically uploaded to your Dropbox folder.
-Regarding the shinyjqui issue, I'm not so sure what to tell you here: the CRAN link to that seems dead (https://rdrr.io/cran/shinyjqui/src/R/includeJqueryUI.R). My guess is that function has been deprecated and there is a new one.
-Regarding the info_battery error, it looks like the new version of catsurv changed some things.
-Regarding the rollcall_lookup error, that is from the ggmap library -- I've just made some changes to make that clearer.
Thank you very much for your development of this package. I tried to clone the repo to implement the example surveys you developed and am running into a few errors:
When I try to run the
audience_costs
app, I receive the following error after answering a few questions:It appears that it is looking for the file 'droptoken.rds', but it does not exist in the repo. I receive a similar error in the
media_bias
app:When running the
compactness
app, I receive the following error:I have installed
shinyjqui
, so I'm not sure why I'm receiving this error.I receive the following error after answering a few questions in the
info_battery
app:When running the
rollcall_lookup
app, I receive the following error:I'm not sure which package to install for the
geocode()
function.Here's my sessionInfo():
Thanks very much in advance!
The text was updated successfully, but these errors were encountered: