Wissensdatenbank Wirtschaftsrecht

aktuelles Dokument: TutoriumGrundlagenStatistikBoxplot
image4
image3
image2
image1
 Alle Kategorien:
  Forschungsdatenbank
  Lehrveranstaltungen
  Lexikon
  Literatur
  Rechtsgebiete
  Rechtsprechung
  Service
  Studium F H S
  Wissensmanagement
ich war hier: TutoriumGrundlagenStatistikBoxplot

Revision history for TutoriumGrundlagenStatistikBoxplot


Revision [93355]

Last edited on 2019-01-31 12:22:45 by FabianEndres
Additions:
Für diese Aufgabe benötigen sie nun lediglich einen Schieberegler, ein Eingabefeld und 3 Auswahlmöglichkeiten. Die Auswahlmöglichkeiten sind zuständig für das Anzeigen von Wind, Temperatur oder beidem gemeinsam. Zusätzlich soll die Funktion "Violinen anzeigen" bereitgestellt werden.
Im Benutzerinterface müssen nun die Auswahlmöglichkeiten "month, day, showViolin, showAttribute" festgelegt werden.
Deletions:
Da im Programm später die Tage und Monate geändert werden sollen werden hierfür Schieberegler in der ui erstellt. Um die dort eingegebenen Werte
verwenden zu können müssen sie in der server.R ausgelesen werden. Ähnlich wie in HTML, dort werden Input Felder erstellt und anschließend anhand
des Labels kann der Inhalt des Feldes ausgelesen werden. So ist es auch mit der Auswahl zwischen Wind und Temperatur. Auch diese Abfrage muss in der
server.R definiert werden.
Die ui bleibt weitgehend gleich. Lediglich die Zeile //htmlOutput('yAxis'),// fällt weg.
Das bedeutet, dass die Auswahl zwischen Wind und Temperatur wegfällt.


Revision [93354]

Edited on 2019-01-31 12:17:59 by FabianEndres
Additions:
**{{color text="Boxplot" c="#00386a"}}**
Die zweite Aufgabe beschäftigt sich mit der Erstellung eines Boxplots.
Unter einem Box-Plot versteht man ein Diagramm, das zur grafischen Darstellung der Verteilung eines ordinalskalierten Merkmals verwendet wird. Es fasst dabei verschiedene robuste Streuungs- und Lagemaße in einer Darstellung zusammen. Der Box-Plot soll schnell einen Eindruck darüber vermitteln, in welchem Bereich die Daten liegen und wie sie sich über diesen Bereich verteilen. Deshalb werden alle Werte der sogenannten Fünf-Punkte-Zusammenfassung, also der Median, die zwei Quartile und die beiden Extremwerte, dargestellt.
https://de.wikipedia.org/wiki/Box-Plot
Deletions:
**{{color text="Boxplott" c="#00386a"}}**
Die zweite Aufgabe beschäftigt sich mit der Erstellung eines Kantengraph Diagramms beziehungsweise eines Boxplots. Ziel ist es hier eine rote Linie für die Temperatur und eine Blaue Linie für den Wind auszugeben.


Revision [93329]

Edited on 2019-01-29 18:37:04 by FabianEndres
Additions:
||{text-align: LEFT}**[[TutoriumGrundlagenStatistikScatterplot << Zurück]]** ||{text-align: RIGHT}**[[TutoriumGrundlagenStatistikTreemap >> Weiter ]]**| |
Deletions:
||{text-align: LEFT}**[[TutoriumGrundlagenStatistikScatterplot<< Zurück]]** ||{text-align: RIGHT}**[[TutoriumGrundlagenStatistikTreemap>> Weiter ]]**| |


Revision [93328]

Edited on 2019-01-29 18:36:44 by FabianEndres
Additions:
----
||{text-align: LEFT}**[[TutoriumGrundlagenStatistikScatterplot<< Zurück]]** ||{text-align: RIGHT}**[[TutoriumGrundlagenStatistikTreemap>> Weiter ]]**| |
Deletions:
||{text-align: LEFT}**[[TutoriumGrundlagenStatistikScatterplot<< Zurück]]** ||{text-align: RIGHT}**[[TutoriumGrundlagenStatistik >> Weiter zur Übersicht]]**| |


Revision [93325]

Edited on 2019-01-29 18:31:36 by FabianEndres
Additions:
if(input$showAttribute ""=="" 'Wind'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
else if(input$showAttribute ""=="" 'Temperatur'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Temp, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, c('Wind', 'Day', 'group')], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],
**{{color text="Hierkönnen Sie den Quellcode ohne Kommentare zusammengefasst herunterladen:" c="#00386a"}}**
Deletions:
if(input$showAttribute == 'Wind'){
p <- ggplot(rV$data[rV$data$Month == input$month, ], aes(y = Wind, x = Day, group = group))
if (input$showViolin == TRUE) {
else if(input$showAttribute == 'Temperatur'){
p <- ggplot(rV$data[rV$data$Month == input$month, ], aes(y = Temp, x = Day, group = group))
if (input$showViolin == TRUE) {
p <- ggplot(rV$data[rV$data$Month == input$month, c('Wind', 'Day', 'group')], aes(y = Wind, x = Day, group = group))
if (input$showViolin == TRUE) {
data = rV$data[rV$data$Month == input$month, c('Temp', 'Day', 'group')],
data = rV$data[rV$data$Month == input$month, c('Temp', 'Day', 'group')],
**{{color text="Hier könnt ihr den Quellcode ohne Kommentare zusammengefasst herunterladen:" c="#00386a"}}**


Revision [93324]

Edited on 2019-01-29 18:30:28 by FabianEndres

No Differences

Revision [93323]

Edited on 2019-01-29 18:29:24 by FabianEndres
Additions:
{{image url="Boxplot_2.jpg" width="400" class="center"}}
Deletions:
{{image url="Boxplot_2.jpg" width="400" class="right"}}


Revision [93322]

Edited on 2019-01-29 18:28:59 by FabianEndres
Additions:
Die zweite Aufgabe beschäftigt sich mit der Erstellung eines Kantengraph Diagramms beziehungsweise eines Boxplots. Ziel ist es hier eine rote Linie für die Temperatur und eine Blaue Linie für den Wind auszugeben.
Deletions:
Die zweite Aufgabe beschäftigt sich mit der Erstellung eines Kantengraph Diagramms beziehungsweise eines Boxplots.
Ziel ist es hier eine rote Linie für die Temperatur und eine Blaue Linie für den Wind auszugeben.
{{files}}


Revision [93321]

Edited on 2019-01-29 18:28:42 by FabianEndres
Additions:
Die zweite Aufgabe beschäftigt sich mit der Erstellung eines Kantengraph Diagramms beziehungsweise eines Boxplots.
min = min(airquality['Month']), max = max(airquality['Month']), step = 1,
value = min(airquality['Month'])
if(input$showAttribute == 'Wind'){
p <- ggplot(rV$data[rV$data$Month == input$month, ], aes(y = Wind, x = Day, group = group))
if (input$showViolin == TRUE) {
else if(input$showAttribute == 'Temperatur'){
p <- ggplot(rV$data[rV$data$Month == input$month, ], aes(y = Temp, x = Day, group = group))
if (input$showViolin == TRUE) {
p <- ggplot(rV$data[rV$data$Month == input$month, c('Wind', 'Day', 'group')], aes(y = Wind, x = Day, group = group))
if (input$showViolin == TRUE) {
data = rV$data[rV$data$Month == input$month, c('Temp', 'Day', 'group')],
data = rV$data[rV$data$Month == input$month, c('Temp', 'Day', 'group')],
Deletions:
Als zweite Aufgabe wird ein Kantengraph Diagramm erstellt mit dem Unterschied, dass nun 2 Linien gezeichnet werden.
Da die Grundlagen in der ersten Aufgabe erläutert wurden, werden die Kommentare in dieser Übung etwas weniger.
Ein Beispiel für einen Boxplot seht ihr hier:
min = min(data['Month']), max = max(data['Month']), step = 1,
value = min(data['Month'])
if(input$showAttribute ""=="" 'Wind'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
else if(input$showAttribute ""=="" 'Temperatur'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Temp, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, c('Wind', 'Day', 'group')], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],


Revision [93320]

Edited on 2019-01-29 18:24:18 by FabianEndres
Additions:
{{image url="Boxplot_1.jpg" width="400" class="left"}}
{{files download="Boxplot_v1.txt"text="Boxplot als .txt"}}
Deletions:
{{image url="Boxplot_1.jpg" width="400" class="right"}}
{{files download="Boxplot.txt"text="Boxplot als .txt"}}
{{image url="Boxplot_shiny_org.jpg" width="400" class="right"}}


Revision [93319]

Edited on 2019-01-29 18:19:21 by FabianEndres
Additions:
{{image url="Boxplot_1.jpg" width="400" class="right"}}
{{image url="Boxplot_2.jpg" width="400" class="right"}}
{{files}}


Revision [93281]

Edited on 2019-01-24 22:46:09 by FabianEndres
Additions:
Ein Beispiel für einen Boxplot seht ihr hier:
Deletions:
Am Ende soll die Ausgabe wie folgt aussehen:
{{files}}


Revision [93280]

Edited on 2019-01-24 22:45:30 by FabianEndres
Additions:
{{image url="Boxplot_shiny_org.jpg" width="400" class="right"}}
Deletions:
{{image url="Boxplot_shiny.org.jpg" width="400" class="right"}}


Revision [93279]

Edited on 2019-01-24 22:44:21 by FabianEndres
Additions:
{{image url="Boxplot_shiny.org.jpg" width="400" class="right"}}
Deletions:
{{image url="Boxplot.jpg" width="400" class="right"}}


Revision [93278]

Edited on 2019-01-24 22:43:53 by FabianEndres
Additions:
{{files download="Boxplot.txt"text="Boxplot als .txt"}}
Deletions:
{{files download="Boxplot.txt"text="Linegraph 2 als .txt"}}


Revision [93271]

Edited on 2019-01-23 00:03:25 by FabianEndres
Additions:
{{image url="Boxplot.jpg" width="400" class="right"}}
data = airquality[c('Wind', 'Temp', 'Month', 'Day')]
numericInput(inputId = 'day', label = 'Tage pro Partition',
min = 1, max = 31, step = 1,
value = 3
output$showViolin <- renderUI({
checkboxInput(inputId = "showViolin", label = "Violinen anzeigen", value = FALSE)
output$showAttribute <- renderUI({
radioButtons(inputId = 'showAttribute', label = 'Anzeigen: ',
choices = c('Wind', 'Temperatur', 'Beides'),
selected = 'Beides')


observeEvent(input$day, {
rV$data$group <- floor((rV$data$Day - 1) / input$day)
output$boxPlot <- renderPlot({
p <- numeric()
if(input$showAttribute ""=="" 'Wind'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
p <- p + geom_violin(trim = FALSE, draw_quantiles = TRUE)
}
p <- p + geom_boxplot(width = 0.1)
}
else if(input$showAttribute ""=="" 'Temperatur'){
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, ], aes(y = Temp, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
p <- p + geom_violin(trim = FALSE, draw_quantiles = TRUE)
}
p <- p + geom_boxplot(width = 0.1)
}
else{
p <- ggplot(rV$data[rV$data$Month ""=="" input$month, c('Wind', 'Day', 'group')], aes(y = Wind, x = Day, group = group))
if (input$showViolin ""=="" TRUE) {
p <- p + geom_violin(trim = FALSE, draw_quantiles = TRUE) +
geom_violin(trim = FALSE, draw_quantiles = TRUE,
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],
aes(y = Temp, x = Day, group = group))
}
p <- p + geom_boxplot(width = 0.1, fill = 'red', alpha = 0.5) +
geom_boxplot(width = 0.1,
data = rV$data[rV$data$Month ""=="" input$month, c('Temp', 'Day', 'group')],
aes(y = Temp, x = Day, group = group), fill = 'lightblue', alpha = 0.5)
}
}
titlePanel("Demo 4_Boxplots"),
htmlOutput('day'),
htmlOutput('showViolin'),
htmlOutput('showAttribute')
plotOutput('boxPlot')
)
{{files download="Boxplot.txt"text="Linegraph 2 als .txt"}}
Deletions:
{{image url="Linegraph2.jpg" width="400" class="right"}}
data <- airquality[c('Wind', 'Temp', 'Month', 'Day')]
sliderInput(inputId = 'day', label = 'Tag',
min = 1, max = max(data$Day[data$Month ""=="" input$month]), step = 1,
value = c(1, max(data$Day[data$Month ""=="" input$month]))
# Anpassen der Achsen:
factor = 1,
summand = 0,
data = data
observeEvent(c(input$month, input$day), {
data_tmp <- data[data$Month ""=="" input$month,][c(input$day[1]:input$day[2]),]
rV$factor <- (max(data_tmp$Temp) - min(data_tmp$Temp)) / (max(data_tmp$Wind) - min(data_tmp$Wind))
rV$summand <- (-min(data_tmp$Wind)) * rV$factor + min(data_tmp$Temp)
rV$data$Temp <- (data$Temp - rV$summand) / rV$factor
output$lineGraph <- renderPlot({
p <- ggplot(rV$data[data$Month ""=="" input$month, ][c(input$day[1]:input$day[2]), ]) +
coord_cartesian() +
geom_line(aes(Day, Wind, colour = "Wind")) +
geom_line(aes(Day, Temp, colour = "Temperatur")) +
scale_x_discrete(name = "Tag") +
scale_y_continuous(name = "Wind",
sec.axis = sec_axis(trans = ~. * rV$factor + rV$summand, name = "Temperatur")) +
scale_colour_manual(name = "Legende", values = c("Wind" = 'blue', "Temperatur" = 'red'))
}//
titlePanel("Demo 2_Linegraph"),
htmlOutput('day')
plotOutput('lineGraph')
)//
{{files download="Linegraph2.txt"text="Linegraph 2 als .txt"}}


Revision [93263]

The oldest known version of this page was created on 2019-01-22 19:59:01 by FabianEndres
Valid XHTML   |   Valid CSS:   |   Powered by WikkaWiki