Hi all, I want to know if the is a possibility to increase the size of the default numbers that appears on axis on a plot, I don´t mean a labbel I mean the number on axis and yaxis. You see when in excel you select a plot and select all and increase the font letters or mark bold all the graph parametrization increases at the same time [[alternative HTML version deleted]]
On May 4, 2013, at 3:24 PM, Jose Narillos de Santos wrote:> Hi all, > > I want to know if the is a possibility to increase the size of the default > numbers that appears on axis on a plot, I don?t mean a labbel I mean the > number on axis and yaxis. > > You see when in excel you select a plot and select all and increase the > font letters or mark bold all the graph parametrization increases at the > same time > > [[alternative HTML version deleted]]The base plotting model is not object oriented, but you are welcome to study either the lattice or the ggplot2 pltting paradigms that are: ?par ?axis plot(1:10, 1:10, cex.axis=3) -- David Winsemius Alameda, CA, USA
On 05/05/2013 08:24 AM, Jose Narillos de Santos wrote:> Hi all, > > I want to know if the is a possibility to increase the size of the default > numbers that appears on axis on a plot, I don?t mean a labbel I mean the > number on axis and yaxis. > > You see when in excel you select a plot and select all and increase the > font letters or mark bold all the graph parametrization increases at the > same timeHi Jose, Use the "cex.axis" argument with the plot function: plot(1:10,cex.axis=2) Jim