Graphics

The first step in data analysis is to draw a beautiful graph so that Layman will appreciate your finding. Here I will give some help and good reference for making this task success.  One good reference is Deepayan, S (2008) “Lattice: Multivariate Data Visualization with R”, Springer.

If you want to view some interesting graphs, try

demo(persp)          #do not forget to press enter twice.

demo(graphics)

To know about a power full library dealing with graphics type library(help=lattice)

You can make the graphs very attractive using the following command

plot(x,y, main="Publication", xlab="Year", ylab="Number", col=rainbow(16), type="l") # col="blue" also can use

To know more about graphical tools type ?par

 

 back to notes