-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 3e644e0 🚀
- Loading branch information
1 parent
accdf79
commit 4bb3994
Showing
4 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 +1 @@ | ||
[{"path":"https://tada.science/react/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2024 react authors Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"https://tada.science/react/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Romain François. Author, maintainer.","code":""},{"path":"https://tada.science/react/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"François R (2024). react: Reactivity Helper 'shiny'. R package version 2024.1.1, http://react.tada.science/, https://github.com/tadascience/react.","code":"@Manual{, title = {react: Reactivity Helper for 'shiny'}, author = {Romain François}, year = {2024}, note = {R package version 2024.1.1, http://react.tada.science/}, url = {https://github.com/tadascience/react}, }"},{"path":"https://tada.science/react/index.html","id":"react","dir":"","previous_headings":"","what":"Reactivity Helper for shiny","title":"Reactivity Helper for shiny","text":"goal react help reactivity, instead calling foo reactive expression foo() can call react$foo similar one calls input$bar inputs, alternatively react[foo] react[foo()]. benefit makes easier spot calls reactive expressions server code.","code":""},{"path":"https://tada.science/react/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Reactivity Helper for shiny","text":"can install development version react GitHub :","code":"pak::pak(\"tadascience/react\")"},{"path":"https://tada.science/react/index.html","id":"examples","dir":"","previous_headings":"","what":"Examples","title":"Reactivity Helper for shiny","text":"Take shiny example: react can rewrite plot output one , depending taste.","code":"server <- function(input, output) { dataInput <- reactive({ getSymbols(input$symb, src = \"yahoo\", from = input$dates[1], to = input$dates[2], auto.assign = FALSE) }) output$plot <- renderPlot({ chartSeries(dataInput(), theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) } # react$ is similar conceptually to how input$ works output$plot <- renderPlot({ chartSeries(react$dataInput, theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) # react[] output$plot <- renderPlot({ chartSeries(react[dataInput], theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) # react[()] so that you still have the calling a function feel # and you just sourround it output$plot <- renderPlot({ chartSeries(react[dataInput()], theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) })"},{"path":"https://tada.science/react/reference/react.html","id":null,"dir":"Reference","previous_headings":"","what":"Reactivity helper — react","title":"Reactivity helper — react","text":"react object gives alternative syntax call shiny reactive expressions.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Reactivity helper — react","text":"","code":"react"},{"path":"https://tada.science/react/reference/react.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Reactivity helper — react","text":"object class react length 0.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"details","dir":"Reference","previous_headings":"","what":"Details","title":"Reactivity helper — react","text":"benefit makes easier spot code.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Reactivity helper — react","text":"","code":"if (FALSE) { # imagine you have some shiny reactive foo <- reactive({ whatever() + something() }) # react allows you to call it in 3 different ways # instead of the usual foo() form react$foo react[foo] react[foo()] }"},{"path":"https://tada.science/react/news/index.html","id":"react-202401001","dir":"Changelog","previous_headings":"","what":"react 2024.01.001","title":"react 2024.01.001","text":"Initial CRAN submission.","code":""}] | ||
[{"path":"https://tada.science/react/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2024 react authors Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"https://tada.science/react/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Romain François. Author, maintainer.","code":""},{"path":"https://tada.science/react/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"François R (2024). react: Reactivity Helper 'shiny'. R package version 2024.1.1, https://react.tada.science/, https://github.com/tadascience/react.","code":"@Manual{, title = {react: Reactivity Helper for 'shiny'}, author = {Romain François}, year = {2024}, note = {R package version 2024.1.1, https://react.tada.science/}, url = {https://github.com/tadascience/react}, }"},{"path":"https://tada.science/react/index.html","id":"react","dir":"","previous_headings":"","what":"Reactivity Helper for shiny","title":"Reactivity Helper for shiny","text":"goal react help reactivity, instead calling foo reactive expression foo() can call react$foo similar one calls input$bar inputs, alternatively react[foo] react[foo()]. benefit makes easier spot calls reactive expressions server code.","code":""},{"path":"https://tada.science/react/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Reactivity Helper for shiny","text":"can install development version react GitHub :","code":"pak::pak(\"tadascience/react\")"},{"path":"https://tada.science/react/index.html","id":"examples","dir":"","previous_headings":"","what":"Examples","title":"Reactivity Helper for shiny","text":"Take shiny example: react can rewrite plot output one , depending taste.","code":"server <- function(input, output) { dataInput <- reactive({ getSymbols(input$symb, src = \"yahoo\", from = input$dates[1], to = input$dates[2], auto.assign = FALSE) }) output$plot <- renderPlot({ chartSeries(dataInput(), theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) } # react$ is similar conceptually to how input$ works output$plot <- renderPlot({ chartSeries(react$dataInput, theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) # react[] output$plot <- renderPlot({ chartSeries(react[dataInput], theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) }) # react[()] so that you still have the calling a function feel # and you just sourround it output$plot <- renderPlot({ chartSeries(react[dataInput()], theme = chartTheme(\"white\"), type = \"line\", log.scale = input$log, TA = NULL) })"},{"path":"https://tada.science/react/reference/react.html","id":null,"dir":"Reference","previous_headings":"","what":"Reactivity helper — react","title":"Reactivity helper — react","text":"react object gives alternative syntax call shiny reactive expressions.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Reactivity helper — react","text":"","code":"react"},{"path":"https://tada.science/react/reference/react.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Reactivity helper — react","text":"object class react length 0.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"details","dir":"Reference","previous_headings":"","what":"Details","title":"Reactivity helper — react","text":"benefit makes easier spot code.","code":""},{"path":"https://tada.science/react/reference/react.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Reactivity helper — react","text":"","code":"if (FALSE) { # imagine you have some shiny reactive foo <- reactive({ whatever() + something() }) # react allows you to call it in 3 different ways # instead of the usual foo() form react$foo react[foo] react[foo()] }"},{"path":"https://tada.science/react/news/index.html","id":"react-202401001","dir":"Changelog","previous_headings":"","what":"react 2024.01.001","title":"react 2024.01.001","text":"Initial CRAN submission.","code":""}] |