@@ -229,8 +228,13 @@ server <- function(input, output, session) {
})
#BARCHART text
output$bar_info<-renderText({
paste("Please be aware, that once you created another chart you won't be able to change the data of your previous charts. The newer chart will crash. ")
})
output$bar_explain<-renderText({
"Here you can add a barchart. A bar chart uses bars to show comparisons between categories of data. If you was trying to compare the height of something then intuitvely you would represent this by using columns. After clicking on the add button, a box with dropdownfields and a barchart will apear. Please set your wanted data for the x-and y-axis. Also be aware, that once you created another chart you won't be able to change the data of your previous charts."
paste("Here you can add a barchart. A bar chart uses bars to show comparisons between categories of data. If you was trying to compare the height of something then intuitvely you would represent this by using columns. After clicking on the add button, a box with dropdownfields and a barchart will apear. Please set your wanted data for the x-and y-axis. Also be aware, that once you created another chart you won't be able to change the data of your previous charts.")
})
observeEvent(input$check_time,{
...
...
@@ -330,8 +334,11 @@ server <- function(input, output, session) {
})
#LINECHART text
output$line_info<-renderText({
paste("Please be aware, that once you created another chart you won't be able to change the data of your previous charts. The newer chart will crash. ")
})
output$line_explain<-renderText({
"Here you can add a linechart. After clicking on the add button, a box with dropdownfields and a linechart will apear. Please set your wanted data for the x-and y-axis. Also be aware, that once you created another chart you won't be able to change the data of your previous charts."
"Here you can add a linechart. After clicking on the add button, a box with dropdownfields and a linechart will apear. Please set your wanted data for the x-and y-axis."
})
...
...
@@ -373,8 +380,11 @@ server <- function(input, output, session) {
#SCATTERPLOT text
output$scat_info<-renderText({
paste("Please be aware, that once you created another chart you won't be able to change the data of your previous charts. The newer chart will crash. ")
})
output$scat_explain<-renderText({
"Here you can add a scatterplot. After clicking on the add button, a box with dropdownfields and a scatterolot will apear. Please set your wanted data for the x-and y-axis. Also be aware, that once you created another chart you won't be able to change the data of your previous charts."
"Here you can add a scatterplot. After clicking on the add button, a box with dropdownfields and a scatterolot will apear. Please set your wanted data for the x-and y-axis."
})
...
...
@@ -416,8 +426,11 @@ server <- function(input, output, session) {
#BOXPLOT text
output$box_info<-renderText({
paste("Please be aware, that once you created another chart you won't be able to change the data of your previous charts. The newer chart will crash. ")
})
output$box_explain<-renderText({
"Here you can add a boxplot. After clicking on the add button, a box with a dropdownfield and a boxplot will apear. Please set your wanted data for the data. Also be aware, that once you created another chart you won't be able to change the data of your previous charts."
"Here you can add a boxplot. After clicking on the add button, a box with a dropdownfield and a boxplot will apear. Please set your wanted data for the data."
})
...
...
@@ -483,8 +496,12 @@ server <- function(input, output, session) {
})
#MAP text
output$map_info<-renderText({
paste("Please be aware, that once you created another chart you won't be able to change the data of your previous charts. The newer chart will crash. ")
})
output$map_explain<-renderText({
"Here you can add a map. After clicking on the add button, a box with dropdownfield and a map will apear. Please set your wanted data. The map will show the way the participant went, also the data you selected is going to be normalized (highest value=10).Also be aware, that once you created another chart you won't be able to change the data of your previous charts."
"Here you can add a map. After clicking on the add button, a box with dropdownfield and a map will apear. Please set your wanted data. The map will show the way the participant went, also the data you selected is going to be normalized (highest value=10)."