[R] An empty grey diagram
Joshua Wiley
jwiley.psych at gmail.com
Sat Nov 20 05:57:41 CET 2010
It looks like all the packages you should need are loaded. Does the
call to plot() create a scatter plot correctly? abline() adds a line
to the current plot so that device still needs to be open when you
call abline() (which it should have been if you ran the code from my
first email). If a graphic device does not start when you call plot()
then your error is earlier and you may need to explicitly open one (as
David suggested).
On Fri, Nov 19, 2010 at 8:38 PM, Stephen Liu <satimis at yahoo.com> wrote:
> Hi Josh,
>
>> sessionInfo()
> R version 2.12.0 (2010-10-15)
> Platform: x86_64-pc-mingw32/x64 (64-bit)
> locale:
> [1] LC_COLLATE=English_United States.1252
> [2] LC_CTYPE=English_United States.1252
> [3] LC_MONETARY=English_United States.1252
> [4] LC_NUMERIC=C
> [5] LC_TIME=English_United States.1252
> attached base packages:
> [1] stats graphics grDevices datasets utils methods base
> other attached packages:
> [1] rcom_2.2-3.1 rscproxy_1.3-1
> loaded via a namespace (and not attached):
> [1] tools_2.12.0
>
>
> 58 27.3 OJ 2.0
> 59 29.4 OJ 2.0
> 60 23.0 OJ 2.0
>>
>> abline(lm(len~dose, data = ToothGrowth))
> Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
> plot.new has not been called yet
>> abline(lm(len ~ dose, data = ToothGrowth))
> Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
> plot.new has not been called yet
>> sessioninfo()
> Error: could not find function "sessioninfo"
>> capabilities()
> jpeg png tiff tcltk X11 aqua http/ftp sockets
> TRUE TRUE TRUE TRUE FALSE FALSE TRUE TRUE
> libxml fifo cledit iconv NLS profmem cairo
> TRUE FALSE TRUE TRUE TRUE TRUE FALSE
>
>
> B.R.
> Stephen L
More information about the R-help
mailing list