Marius Hofert
2010-Dec-26 10:41 UTC
[R] lattice splom: how to adjust space between tick marks and tick labels?
Dear expeRts, how can I decrease the space between the tick marks and the corresponding labels in an splom? See here: library(lattice) U <- matrix(runif(4000), ncol = 8) splom(U, axis.text.cex = 0.2) # => space between the [small] tick labels and tick marks is/seems to be too large I checked ?panel.pairs but could not find an option for that. Cheers, Marius
David Winsemius
2010-Dec-26 13:36 UTC
[R] lattice splom: how to adjust space between tick marks and tick labels?
On Dec 26, 2010, at 5:41 AM, Marius Hofert wrote:> Dear expeRts, > > how can I decrease the space between the tick marks and the > corresponding labels in an splom? > See here: > > library(lattice) > U <- matrix(runif(4000), ncol = 8) > splom(U, axis.text.cex = 0.2) # => space between the [small] tick > labels and tick marks is/seems to be too largeSo you want more tick marks?> > I checked ?panel.pairs but could not find an option for that.What about the pscales argument? A single number would increase the number of ticks, or a list with "at" and "labels" values can be passed. Seem to be just what you asked for. -- David Winsemius, MD West Hartford, CT
Seemingly Similar Threads
- How to put given values in lower triangle of splom-plot?
- splom, plotmath: how to add three lines of information with alignment?
- Lattice: How to color the data points in splom() according to the panel they are plotted?
- splom Tick Location
- Adding axis lines to splom plots