-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Marketing app updates for shinyapp.io
- Loading branch information
Showing
15 changed files
with
73 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: radiant | ||
Title: Business Analytics using R and Shiny | ||
Version: 0.1.94 | ||
Date: 2015-4-9 | ||
Version: 0.1.95 | ||
Date: 2015-4-10 | ||
Authors@R: person("Vincent", "Nijs", , "[email protected]", c("aut", "cre")) | ||
Description: | ||
A platform-independent browser-based interface for business analytics in R, based on the Shiny package. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
# path to use for local and server use | ||
# path <- ".." | ||
|
||
# path to use for shinyapps.io | ||
path <- system.file(package = "radiant") | ||
|
||
# if radiant is not installed revert to path in the inst directory | ||
if(path == "") path <- ".." | ||
|
||
# sourcing from radiant base | ||
source('../base/global.R', local = TRUE) | ||
source(paste0(path,"/base/global.R"), local = TRUE) | ||
|
||
# add functions below that may not be needed in other apps | ||
if(!"package:radiant" %in% search()) { | ||
addResourcePath("figures_marketing", "tools/help/figures/") | ||
addResourcePath("figures_quant", "../quant/tools/help/figures/") | ||
addResourcePath("figures_quant", paste0(path,"/quant/tools/help/figures/")) | ||
# approach to use for shinyapps.io - must have radiant package installed | ||
# addResourcePath("figures_quant", system.file("quant/tools/help/figures/", package="radiant")) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# sourcing from radiant base | ||
source('../base/radiant.R', local = TRUE) | ||
source(paste0(path,"/base/radiant.R"), local = TRUE) | ||
|
||
# add functions below that may not be needed in other apps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: quant | ||
account: vnijs | ||
bundleId: 161592 | ||
url: http://vnijs.shinyapps.io/quant |