Displaying 1 result from an estimated 1 matches for "lissnpc100".
2001 Sep 27
2
Getting your stuff organized in R
...h R from the appropriate directory.
2. You can save to a different file and/or another directory with:
> save(object1,object2,file="myobjects1&2")
3. It is useful to take advantage of the capabilities of ls() to select
what you want, i.e.:
>ls(pat="liss")
[1] "lissNPC100" "lissNPC100.ady" "lissNPC100.stat" "lissNPC1100.ref"
>save(list=ls(pat="liss"),file="lissobjects")
4. You normaly will need functions that are not
in the base package and that are not made available to you after
a default R start. Y...