-
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: Axis position
A standard plot provides an x-axis on the bottom and a y-axis on the left side. It is also possible to change the position of these axes. The position can be passed as parameter. The following example will create a … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Axis Labels (color, size and rotation)
Remove axis labels and annotations Sometimes you want to hide an axis or the axis annotations. Maybe you don’t want to show the axis at all or you want to create a customized one and therefore hide the default one. … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Label points
It could be useful to label the points of a plot to provide additional information. For example you might want to show the exact values of each point. The following example creates a plot with some points and adds the … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Text in the margin
The outer margin of a plot can be used to place some text. The function mtext puts text in the bottom, left, top or right margin, according to the value set in the side parameter. plot(1,2) mtext(„text at bottom“, side … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Titles for window and axis
You can define a title and a sub title for the plot and label the axis. Set the according parameters: main, sub, xlab and ylab. The following example shows an according plot. plot(1,2, main = ‚Title‘, sub = ’sub title‘ … Weiterlesen
Veröffentlicht unter R
Kommentar hinterlassen
Data visualization in R: Multi-Paneled Plots with par and layout
It is possible to create a multi-paneled plotting window with the par function and the layout function. The par function is easy to use and creates a simple panel while layout should be used for customized panels of varying sizes. … Weiterlesen
Veröffentlicht unter .NET, R
Kommentar hinterlassen
Data visualization in R: Plot Types
R offers nice graphic functions to visualize you data. Within this article I want to show you the basic and therefore very often used possibility to create a graphic. Furthermore you will learn a first parameter to adapt the presentation … Weiterlesen
Veröffentlicht unter .NET, C#, R
Kommentar hinterlassen
Use R in C#: R.NET data types
If you want to use R.NET to access R via C# applications, you have to know the R.NET type system. Following you will find a list with the R types, R.NET types and the equivalent in the .NET framework. R … Weiterlesen
Veröffentlicht unter .NET, C#, R
Kommentar hinterlassen
Use R in C#: R data types
Maybe you want to use R in C# to do some basic data analysis and create some nice plots. In such cases it is not necessary to learn the whole R syntax and know all R features. But it will … Weiterlesen
Veröffentlicht unter .NET, C#, R
Kommentar hinterlassen
Use R in C#: Create a data plot and save it as png
As shown in a previously article it is easy to integrate R in a C# application by using R.Net. Within this article I want to explain how to create a data visualization plot and export it as png file. … Weiterlesen
Veröffentlicht unter .NET, C#, R
2 Kommentare