[R] Plotting with basic plot

2013-03-16 Thread Neuwirth Erich
When I run this code fragment x <- (0:100)/100 y <- x^2 plot(x,y,type="l",xlab=expression(x),ylab=expression(f(x)==x^2), main="Quadratfunktion") the exponent on the y-axis label is mutilated. How can the be changed with minimal effort? ggplot2 does not have this problem: library(ggplot2) x <

[R] [R-pkgs] RExcelInstaller update

2012-04-30 Thread Neuwirth Erich
New version RExcel 3.2.7-1 Download wrapper for new version of RExcel. ___ R-packages mailing list r-packa...@r-project.org https://stat.ethz.ch/mailman/listinfo/r-packages __ R-help@r-project.org mailing list

Re: [R] trouble with uninstall

2011-08-08 Thread Neuwirth Erich
I had some problems with one of the R 1.12.x installers when I created RAndFriends including 64bit R for the first time. Detailed instructions on what to do in such cases can be found in the wiki on room.univie.ac.at. There should not be any problems with RAndFriends for R 2.13.x. On Aug 8, 2

Re: [R] trouble with uninstall

2011-08-07 Thread Neuwirth Erich
The statconn-RExcel project (RAndFriends is available as service from this project) has its own mailing list. Subscription is possible at the web site you mentioned. If you think your problem is caused by the RAndFriendsSetup, please subscribe to the mailing list and report your problems there.

[R] multiple mosaic plots layout

2011-05-01 Thread Neuwirth Erich
I would like to display multiple mosaic plots from vcd (not defined by a model but derived from different data sets) side by side. Neither par(mfrow=...) nor layout seem to allow to arrange multiple mosaic plots in a grid. Is there an easy way of arranging mosaics in a grid? _