Monatsarchiv: Januar 2016

Team formation by increasing the team closeness

If you want to execute a project efficient, you have to have a good team. But what is a “good” team? A group of individualistic working specialist or a union of people of separated departments or …? It isn’t easy … Weiterlesen

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