I have an R package called foo that is not uploaded on CRAN but hosted on Github. Within the package, I have, together with standard files and functions within the R/ folder, a shiny app within the inst/ folder.
Now, the shiny app use some of the functions of the foo package and I can load the package within the app.R using library(foo) and everything works fine. However when deploying the app online I cannot put foo as dependency and I cannot access the R/ folder (unless I copy the scripts within the inst/app/ folder. Is there a way to deploy an app within a package that use some of the package functions?
Deploying online shiny app depending on functions within the R folder (inside a package)
45 Views Asked by Filippo Gambarota At
0
There are 0 best solutions below
Related Questions in R
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
- Extract series of observations from dataframe for complete sets of data
- Retrieve path of supplementary data file of developed package
- r package development - own function not visible for opencpu
- Label a dataset according to bins of a histogram
- multiply each columns of a matrix by a vector
Related Questions in SHINY
- Shiny: Reactive boolean variable across functions in server.R
- Leaflet map legend in R Shiny app has doesn't show colors
- Skipping a value between min and max values when using selectInput function in Shiny
- Get selected rows of Rhandsontable
- CDF - GoogleVis command for Cumulative Distribution plot
- R Shiny list2env
- How to pre-select rows in Shiny DT datatables
- Cannot produce ggplot2 in Shiny
- partly upload your input from a file
- Shiny: How to create a table/like user input
- How can I render an rChart in an Rmarkdown shiny document?
- The error when publishing a shiny app
- How to make the horizontal scrollbar visible in DT::datatable
- Selecting single row in shiny using DT
- switch() returns NULL in shiny on unicode characters coming from variable input only
Related Questions in R-PACKAGE
- How to use S3 methods from another package which uses export rather than S3method in its namespace without using Depends or library()
- Import one function in R package (without importFrom)
- Using Rstudio to build R packages
- Error in R using neuralnet package
- Specify valgrind options to R package on Travis CI
- Text Translation Issue
- Test interaction with users in R package
- Building an R package error with devtools::document
- Imports - functions with the same name but from different package
- dealing with large dataset when creating R package
- error when preparing nested foreach loops for R package compile
- How to call the main function of a c code using R?
- Procedure Entry Point Error
- unexpected input in "%load_ext rpy2.ipython" in R - ipython
- Renaming and Hiding an Exported Rcpp function in an R Package
Related Questions in SHINYAPPS
- Reducing space between two box() in R shiny
- Creating a dropdown menu using icon in R and updating plot
- Replicating selectInput plot using sliderInput
- Picker input not appearing on clicking the circle in R shiny
- Implement zoom and reset functionality using action buttons in R shiny
- How to freeze a part of dashboard body in R Shiny?
- How to get the current URL for Shiny App?
- Numeric Input responds too quickly in Shiny
- ggplotly in shiny app keeps crashing (Rstudio)
- object Object error in R Shiny SQLite App
- How do I get aggregated data for selected attributes from shiny app?
- R shiny: Switching tabs programmatically using shinymaterial
- R Shiny app error Error in eval: object 'age' not found
- Shiny App crashes when a non-exisiting directory is chosen
- MathJax equations in Shiny app rendering locally, but break when deployed to Shinyapps.io
Related Questions in DRAT
- how create a RIVE animation with flutter
- Directory not found when using Drat on a network drive
- Problem uploading R package to repository generated using R package "drat"
- Deploying online shiny app depending on functions within the R folder (inside a package)
- Problem when changing a value in an array to null
- R - failed installation of package with github dependency
- How to get download statistics/analytics from gh-pages for DRAT archives
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?