r 将Rstudio历史数据库保存为更好的格式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 将Rstudio历史数据库保存为更好的格式相关的知识,希望对你有一定的参考价值。

library(dplyr)
library(magrittr)
library(lubridate)
library(bit64)
library(stringr)

lns <- readLines("~/.rstudio-desktop/history_database") %>% str_split(pattern=":",n=2)
hist_db <- data_frame(epoch=as.integer64(sapply(lns,"[[",1)),history=sapply(lns,"[[",2))

hist_db %<>% mutate(nice_date = as.POSIXct(epoch/1000,origin = "1970-01-01",tz = "EET"))
hist_db %<>% mutate(day = ceiling_date(nice_date,unit = "day")-days(1))

hist_db %<>% select(-epoch)

dd <- hist_db$day %>% unique %>% sort

ff <- "~/R/hist_nice.txt"
cat("R history","\n",rep("-",80),"\n",file=ff,sep="")

for(i in 1:length(dd)) {
    cat("\n\n",format(dd[i]),"\n",rep("-",80),"\n",file=ff,sep="",append=TRUE)        
    hist_db %>% filter(day==dd[i]) %>% select(nice_date,history) %>% arrange(nice_date) %>% 
        write.table(ff,sep="\t", quote=F, row.names=FALSE, col.names=FALSE, append=TRUE)
}

以上是关于r 将Rstudio历史数据库保存为更好的格式的主要内容,如果未能解决你的问题,请参考以下文章

R.003 Rstudio使用

如何保存 Rstudio 历史中的所有图表

R语言客户端RStudio快捷键大全

RStudio中为R创建Notebook文件

RStudio环境或者ggsave函数保存生成的图像为指定文件格式(pdfjpegtiffpngsvgwmf)指定图像宽度高度分辨率(widthheightdpi)

无法将R脚本保存为R文件