library(flexdashboard) library(shiny) library(CancerTxPathway) library(dplyr) library(highcharter) library(plotly)
The proportion of the patients number treated each regimen for total chemotherapy received patients.
inputPanel( sliderInput("yearThreshold", "Range of the year",min = 1970, max = 2020, value = c(1990,2020)) )
The proportion of the patients number treated each regimen for total chemotherapy received patients.
inputPanel( sliderInput("yearThreshold", "Range of the year",min = 1970, max = 2020, value = c(1990,2020)) )
treatmentPathway(connectionDetails, cohortDatabaseSchema, cohortTable, outputFolder, outputFileTitle, conditionCohortIds, targetCohortIds, eventCohortIds = surgeryCohortIds, minimumRegimenChange = 0, treatmentLine, collapseDates, nodeMinSubject)
fromYear <- reactive(input$yearThreshold[1]) toYear <- reactive(input$yearThreshold[2]) output$usage <- renderHighchart({ usagePatternGraph(connectionDetails, cohortDatabaseSchema, cohortTable, targetCohortIds, conditionCohortIds, outputFolder, outputFileTitle, fromYear(), toYear()) }) highchartOutput('usage')
heatmapPlotData<-heatmapData(connectionDetails, cohortDatabaseSchema, cohortTable, targetCohortIds, outputFolder, outputFileTitle, identicalSeriesCriteria, conditionCohortIds) treatmentIterationDistribution(heatmapPlotData, maximumCycleNumber, heatmapColor)
textInput("ui2","Keyword","regimen") actionButton("act","Change apply")
renderPlot(cycleIncidencePlot(connectionDetails, cohortDatabaseSchema, cohortTable, outputFolder, outputFileTitle, targetCohortIds, conditionCohortIds, eventCohortIds, restrictInitialSeries = TRUE, restricInitialEvent =TRUE, identicalSeriesCriteria, eventPeriod = 30, targetMin))
renderPlotly(incidenceDatePlot(connectionDetails, cohortDatabaseSchema, cohortTable, targetCohortIds, outputFolder, outputFileTitle, identicalSeriesCriteria = 60, conditionCohortIds, eventCohortIds, restrictEventDate = 90))
Copyright 2020 Observational Health Data Sciences and Informatics
This file is part of CancerTxPathway
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.