Displaying 3 results from an estimated 3 matches for "mtaboga".
Did you mean:
taboga
2001 May 02
2
Troubles with plot margins
I am trying to set the margins of a plot with mai and I get a strange output.
I write:
plot(rnorm(1000),type="l",mai=c(1,1,1,1))
and what I get is a plot with unchanged margins and a column of four 1 plotted on the top margin.
Marco Taboga (mtaboga at tiscalinet.it)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20010502/00d0e5dd/attachment.html
2001 May 31
1
Building shared libraries under Windows
...windres: no resources
make: *** [prova_res.o] Error 1
If I use the object file, I type:
rcmd shlib prova
and what I get is:
make[1]: `libR.a' is up to date.
make: *** No rule to make target `prova.o', needed by `prova.a'. Stop.
Thanks for your help.
Marco Taboga (mtaboga at tiscalinet.it)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20010531/1d61e2e4/attachment.html
2001 May 01
0
Re: [R] Crazy plots of time-series against dates (PR#930)
"Marco Taboga" <mtaboga@tiscalinet.it> writes:
> OK, it works. xlab and ylab had to be set properly.
> If you want to see what actually goes on, try:
> a<-chron(1:2000)
> b<-1:2000
> plot(a,b,type="l")
>
One of the standard blunders with R's lazy evaluation and substitute is
to...