-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from rsquaredacademy/develop
CRAN release
- Loading branch information
Showing
32 changed files
with
1,341 additions
and
21 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
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,3 +1,7 @@ | ||
# vistributions 0.1.1 | ||
|
||
This is a patch release to fix bugs in the app. | ||
|
||
# vistributions 0.1.0 | ||
|
||
* Added a `NEWS.md` file to track changes to the 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
## Test environments | ||
* local Windows 10 install, R 3.5.1 | ||
* ubuntu 14.04 (on travis-ci), R 3.5.1 | ||
* local Windows 10, R 3.5.2 | ||
* ubuntu 14.04 (on travis-ci), R 3.4.4, R 3.5.2, R devel | ||
* win-builder (devel and release) | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 1 note | ||
0 errors | 0 warnings | 0 note | ||
|
||
* This is a new release. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,17 @@ | ||
output$binom_shape <- renderPlot({ | ||
vdist_binom_plot(input$binom_n, input$binom_p) | ||
}) | ||
|
||
output$bprob_plot <- renderPlot({ | ||
if (input$bprob_tail != 'interval') { | ||
vdist_binom_prob(input$bprob_n, input$bprob_p, input$bprob_s, input$bprob_tail) | ||
} else { | ||
vdist_binom_prob(input$bprob_n, input$bprob_p, | ||
c(input$bprob_tail_1, input$bprob_tail_2), input$bprob_tail) | ||
} | ||
|
||
}) | ||
|
||
output$bperc_plot <- renderPlot({ | ||
vdist_binom_perc(input$bperc_n, input$bperc_p, input$bperc_tp, input$bperc_tail) | ||
}) |
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,11 @@ | ||
output$chisq_shape <- renderPlot({ | ||
vdist_chisquare_plot(input$chisq_df, as.logical(input$chisq_norm)) | ||
}) | ||
|
||
output$chiprob_plot <- renderPlot({ | ||
vdist_chisquare_prob(input$chiprob_p, input$chiprob_df, input$chiprob_tail) | ||
}) | ||
|
||
output$chiperc_plot <- renderPlot({ | ||
print(vdist_chisquare_perc(input$chiperc_p, input$chiperc_df, input$chiperc_tail)) | ||
}) |
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,6 @@ | ||
# Exit --------------------------------------------------------------- | ||
observe({ | ||
if (isTRUE(input$mainpage == "exit")) { | ||
stopApp() | ||
} | ||
}) |
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,11 @@ | ||
output$f_shape <- renderPlot({ | ||
vdist_f_plot(input$f_numdf, input$f_dendf, as.logical(input$f_norm)) | ||
}) | ||
|
||
output$fprob_plot <- renderPlot({ | ||
vdist_f_prob(input$fprob_p, input$fprob_numdf, input$fprob_dendf, input$fprob_tail) | ||
}) | ||
|
||
output$fperc_plot <- renderPlot({ | ||
vdist_f_perc(input$fperc_p, input$fperc_numdf, input$fperc_dendf, input$fperc_tail) | ||
}) |
Oops, something went wrong.