📄 write_file.r
字号:
write_file<-function(str, D, file="dist.ldt"){
lab1<-paste("Z", str, sep="")
write(c("X1", lab1, "~"), file=file,
ncolumns=length(lab1)+2)
write.table(D, file=file, append =T,
row.names = F, col.names = F)
write("~", file=file, append =T)
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -