-
Aktuelle Beiträge
Archiv
- März 2020 (1)
- Januar 2020 (1)
- November 2019 (1)
- Oktober 2019 (1)
- September 2019 (2)
- August 2019 (1)
- Juli 2019 (2)
- Juni 2019 (2)
- Mai 2019 (2)
- April 2019 (2)
- März 2019 (3)
- Februar 2019 (2)
- Januar 2019 (2)
- Dezember 2018 (3)
- November 2018 (2)
- Oktober 2018 (2)
- September 2018 (2)
- August 2018 (1)
- Juli 2018 (3)
- Juni 2018 (1)
- Mai 2018 (3)
- April 2018 (5)
- März 2018 (4)
- Februar 2018 (4)
- Januar 2018 (3)
- Dezember 2017 (4)
- November 2017 (4)
- Oktober 2017 (5)
- September 2017 (3)
- August 2017 (3)
- Juli 2017 (5)
- Juni 2017 (1)
- Mai 2017 (4)
- April 2017 (5)
- März 2017 (3)
- Februar 2017 (3)
- Januar 2017 (4)
- Dezember 2016 (2)
- November 2016 (2)
- Oktober 2016 (2)
- September 2016 (2)
- August 2016 (2)
- Juli 2016 (2)
- Juni 2016 (3)
- Mai 2016 (4)
- April 2016 (4)
- März 2016 (4)
- Februar 2016 (4)
- Januar 2016 (5)
- Dezember 2015 (4)
- November 2015 (5)
- Oktober 2015 (3)
- September 2015 (4)
- August 2015 (4)
- Juli 2015 (4)
- Juni 2015 (4)
- Mai 2015 (5)
- April 2015 (4)
- März 2015 (5)
- Februar 2015 (5)
- Januar 2015 (6)
- Dezember 2014 (5)
- November 2014 (7)
- Oktober 2014 (7)
- September 2014 (8)
- August 2014 (7)
- Juli 2014 (4)
- Juni 2014 (5)
- Mai 2014 (4)
- April 2014 (4)
- März 2014 (5)
- Februar 2014 (5)
- Januar 2014 (5)
- Dezember 2013 (5)
- November 2013 (6)
- Oktober 2013 (6)
- September 2013 (5)
- August 2013 (6)
- Juli 2013 (7)
- Juni 2013 (4)
- Mai 2013 (8)
- April 2013 (9)
- März 2013 (10)
- Februar 2013 (11)
- Januar 2013 (14)
Kategorien
Meta
Archiv der Kategorie: R
Data visualization in R: Boxplot
The box plot is a graphical representation showing the median, quartiles and the smallest and largest values of a data set. It will show a visual shape of the data distribution. The following example shows a simple boxplot of the … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Pie charts
Before we start to look at the features and functions of pie charts let me introduce some thoughts about the benefits and cons of this chart type. You will find a lot of discussions about this topic. Summary of these … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Clustered and stacked bar plot
A bar plot can be used to show data in a cluster or stacked by category. Within this article I want to show you both cases. Clustered bar plot By default a bar plot is clustered. The following example … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Histogram
A histogram shows vertical bars representing the frequency distribution of a quantitative variable. Histograms are a great way to get to know your data. They allow you to easily see where a large and a little amount of the data … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Add smooth curve and shaded area to a plot
Within this article I want to show you an easy way to add a smooth curve to your plot, create an area around this curve and fill the area with a transparent color. Let’s start with a standard plot. x … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Change the aspect ratio for a plot
To create a meaningful plot or if you want to save your plot as image you may want to define a fix aspect ratio. The plot function itself offers the possibility to define an own aspect ratio by setting the … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Plotting a function
With the function curve you may plot a function. The following example shows how to use this function. curve(x^3, from = -10 , to = 10, main = ‚f(x)=x^3‘, lwd = 2) The curve function offers the option add … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Overlaying plots with matplot
With matplot you can plot the columns of matrices. So it will allow you to draw several data sets at the same time and creates a graph by overlaying the different plots. For example we have three different measurement values … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Background color
You can choose the background of your plot by using the command par(bg=). x <- c(1,2,3,4,5,6) y <- c(3,6,9,4,3,4) par(bg=’lightgreen‘) plot(x,y, type = ‚l‘) As you can see, the command par(bg=) sets the color of the whole plotting area. If … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Grid
By using the grid method you may add a grid to the current graph. By default the grid lines will align with the tick marks on the corresponding default axis. Although by using the arguments nx and ny you may … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen