"Select data for the x- and y-axis then go to add barchart if you want this data to be visualized in a barchart."
"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."
"Add Timeline for getting a Timeline about CoCoQuest Tasks and Questions.To see how long a the participant took for a certain task."
"Add Timeline for getting a Timeline about CoCoQuest Tasks and Questions.To see how long a the participant took for a certain task. Please note that the timeline is static, you can not show different types of data here. Also you can not add multiple charts here. "
"Select data for the x- and y-axis then go to add linechart if you want this data to be visualized in a linechart."
"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."
"Select data for the x- and y-axis then go to add scatterplot if you want this data to be visualized in a scatterplot."
"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."
"Select data then go to add boxplot if you want this data to be visualized in a boxplot."
"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."
@@ -510,20 +573,25 @@ server <- function(input, output, session) {
include.lowest=T,
lables=c('<2','<5','<7','<10')
)
#color encoding data
colorGrad<-colorFactor('RdYlGn',colorData)
#new map
m<<-leaflet()
x=1
m<<-addTiles(m)
m<<-addCircleMarkers(m,lng=as.numeric(coconut.df$gps.longitude),lat=as.numeric(coconut.df$gps.latitude),radius=data,color=colorGrad(colorData))#addPolylines does not work
paste("Select data then go to add map. The map will show the way the participant went, also the data you selected is going to be normalized (highest value=10).")
"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."
})
#TODO: TOOLTIP
@@ -534,23 +602,7 @@ server <- function(input, output, session) {