博客园不能代码高亮,如果对perl、R、python感兴趣可以去我的主页www.from0701.com。
getwd() #显示当前工作目录
setwd("mydirectory") #修改工作目录
ls() #列出当前工作目录中的对象
rm(objectlist) #移除对象
help(options) #显示可用选项的说明
options() #显示或设置当前选项
history(#) #显示最近使用过的#个命令
savehistory("myfile") #保存历史到myfile文件中
loadhistory("myfile") #载入历史
save.image("myfile") #保存工作空间到myfile
save(objectlist, file="myfile") #保存指定对象到myfile中
load("myfile") #读取一个工作空间到当前会话
q() #退出R
dir.create() #创建新目录
时间: 2024-10-03 22:25:47