Monatsarchiv: Mai 2016

Communication barriers

During discussions sometimes someone makes a statement which will block an effective conversation or in worst case leads to an abort of the meeting. Such disastrous statements are called communication barriers. These are formulations which attack the autonomy of the … Weiterlesen

Veröffentlicht unter Projektleitung | 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