2015-12-11 53 views
0

我想阅读一个文件,其中每行代表一个包含日期,一些文本和数字的数据集。例如:如何在R中读取特定格式的文件?

Fri Dec 11 12:40:01 CET 2015 Uptime: 108491 Threads: 2 Questions: 576603 Slow queries: 10 Opens: 2238 Flush tables: 1 Open tables: 7 Queries per second avg: 5.314 
Fri Dec 11 12:50:01 CET 2015 Uptime: 109090 Threads: 2 Questions: 580407 Slow queries: 10 Opens: 2253 Flush tables: 1 Open tables: 6 Queries per second avg: 5.320 
Fri Dec 11 13:00:01 CET 2015 Uptime: 109690 Threads: 2 Questions: 583895 Slow queries: 10 Opens: 2268 Flush tables: 1 Open tables: 8 Queries per second avg: 5.323 
Fri Dec 11 13:10:01 CET 2015 Uptime: 110290 Threads: 1 Questions: 586891 Slow queries: 10 Opens: 2279 Flush tables: 1 Open tables: 6 Queries per second avg: 5.321 
Fri Dec 11 13:20:01 CET 2015 Uptime: 110890 Threads: 2 Questions: 590871 Slow queries: 10 Opens: 2292 Flush tables: 1 Open tables: 5 Queries per second avg: 5.328 

没有一般分隔符(如在CSV),但格式可以被描述相当不错,由于突片,charcters和文本都可以使用。

%DATESTRING%\tUptime: %uptime% Threads: %threads% Questions: %questions% Slow queries: %slow% Opens: %opens% Flush tables: %flush% Open tables: %otables% Queries per second avg: %qps% 

是否有需要的格式的说明和文件,并填补了data.frame给定数据的功能?

+0

我已经把它投入到excel中,把它固定在需要的地方,然后将它保存为csv。 – TBSRounder

+0

@rawr列名包含在行记录中的事实对于我所使用的固定宽度是非标准的... – MichaelChirico

+0

@MichaelChirico是的你是对的 – rawr

回答

0

tidyr有一些实用功能,可能对此有用,但我不会感到惊讶,如果有更多的特殊用途的工具为这项工作而打造的。

首先,我们从一个字符串

raw <- 'Fri Dec 11 12:40:01 CET 2015 Uptime: 108491 Threads: 2  Questions: 576603 Slow queries: 10 Opens: 2238 Flush tables: 1 Open tables: 7 Queries per second avg: 5.314 
Fri Dec 11 12:50:01 CET 2015 Uptime: 109090 Threads: 2 Questions: 580407 Slow queries: 10 Opens: 2253 Flush tables: 1 Open tables: 6 Queries per second avg: 5.320 
Fri Dec 11 13:00:01 CET 2015 Uptime: 109690 Threads: 2 Questions: 583895 Slow queries: 10 Opens: 2268 Flush tables: 1 Open tables: 8 Queries per second avg: 5.323 
Fri Dec 11 13:10:01 CET 2015 Uptime: 110290 Threads: 1 Questions: 586891 Slow queries: 10 Opens: 2279 Flush tables: 1 Open tables: 6 Queries per second avg: 5.321 
Fri Dec 11 13:20:01 CET 2015 Uptime: 110890 Threads: 2 Questions: 590871 Slow queries: 10 Opens: 2292 Flush tables: 1 Open tables: 5 Queries per second avg: 5.328' 

df <- read.csv(textConnection(raw), header=F) 

在这里,我用read.csv,使我明白了作为一个数据帧,但你也可以只使用readLines,并将其添加加载数据,在这种情况下,以一个框架自己。

然后我们处理它

library(tidyr) 
> processed <- df %>% extract(V1, 
    c("Date", "Uptime", "Threads", "Questions"), 
    "(.*) *Uptime: (\\d+) *Threads: (\\d+) *Questions: (\\d+)") 
> processed 
           Date Uptime Threads Questions 
1 Fri Dec 11 12:40:01 CET 2015  108491  2 576603 
2 Fri Dec 11 12:50:01 CET 2015  109090  2 580407 
3 Fri Dec 11 13:00:01 CET 2015  109690  2 583895 
4 Fri Dec 11 13:10:01 CET 2015  110290  1 586891 
5 Fri Dec 11 13:20:01 CET 2015  110890  2 590871 

应该清楚如何从这里提取剩余的列。

0

两个更多的选择:

txt <- "Fri Dec 11 12:40:01 CET 2015 Uptime: 108491 Threads: 2 Questions: 576603 Slow queries: 10 Opens: 2238 Flush tables: 1 Open tables: 7 Queries per second avg: 5.314 
Fri Dec 11 12:50:01 CET 2015 Uptime: 109090 Threads: 2 Questions: 580407 Slow queries: 10 Opens: 2253 Flush tables: 1 Open tables: 6 Queries per second avg: 5.320 
Fri Dec 11 13:00:01 CET 2015 Uptime: 109690 Threads: 2 Questions: 583895 Slow queries: 10 Opens: 2268 Flush tables: 1 Open tables: 8 Queries per second avg: 5.323 
Fri Dec 11 13:10:01 CET 2015 Uptime: 110290 Threads: 1 Questions: 586891 Slow queries: 10 Opens: 2279 Flush tables: 1 Open tables: 6 Queries per second avg: 5.321 
Fri Dec 11 13:20:01 CET 2015 Uptime: 110890 Threads: 2 Questions: 590871 Slow queries: 10 Opens: 2292 Flush tables: 1 Open tables: 5 Queries per second avg: 5.328" 

## first just tack on the date label 
txt <- gsub('^', 'Date: ', readLines(textConnection(txt))) 

选项1

sp <- strsplit(txt, '\\s{2,}') 
out <- lapply(sp, function(x) gsub('([\\w ]+:)\\s+(.*)$', '\\2', x, perl = TRUE)) 
dd <- setNames(do.call('rbind.data.frame', out), 
       gsub('([\\w ]+):\\s+(.*)$', '\\1', sp[[1]], perl = TRUE)) 
dd[, -1] <- lapply(dd[, -1], function(x) as.numeric(as.character(x))) 
dd 

选项2:这一款采用yaml包,但更直接的和做的类型转换为你

yml <- gsub('\\s{2,}', '\n', txt) 
do.call('rbind.data.frame', lapply(yml, yaml::yaml.load)) 

#     Date Uptime Threads Questions Slow queries Opens Flush tables 
# 1 Fri Dec 11 12:40:01 CET 2015 108491  2 576603   10 2238   1 
# 2 Fri Dec 11 12:50:01 CET 2015 109090  2 580407   10 2253   1 
# 3 Fri Dec 11 13:00:01 CET 2015 109690  2 583895   10 2268   1 
# 4 Fri Dec 11 13:10:01 CET 2015 110290  1 586891   10 2279   1 
# 5 Fri Dec 11 13:20:01 CET 2015 110890  2 590871   10 2292   1 
# Open tables Queries per second avg 
# 1   7     5.314 
# 2   6     5.320 
# 3   8     5.323 
# 4   6     5.321 
# 5   5     5.328