gpt4 book ai didi

右 |数据帧到 "plain text"

转载 作者:行者123 更新时间:2023-12-02 08:12:18 24 4
gpt4 key购买 nike

我需要将 data.frame 对象“转换”为纯文本(如 print 输出到控制台。

到目前为止,我创建了以下函数(使用 stringr 包),但我想知道是否存在已实现的函数或更有效的方法:

toString.data.frame = function(object, ...) {
maxLen = max(
stringr::str_length(apply(object, c(1,2), as.character)),
stringr::str_length(names(object))
);

# data-frame to character matrix
txt = apply(object, c(1,2), stringr::str_pad, width=maxLen+5, side="left");
# concatenate the columns
txt = apply(txt, 1, paste, collapse="");
# concatenate the rows
txt = paste(txt, collapse="\n");
# add column names
txt = paste( # concatenate header and body
paste( # concatenate all the headers
stringr::str_pad( # add 5 spaces on the left of each header
stringr::str_pad(names(object), width=maxLen, side="right") # fill each header
, width=maxLen+5, side="left")
, collapse="")
, txt
, sep="\n");

return(txt);
}

我添加了一些可运行的代码以及一个输出示例(每个输出行由“|”分隔)

df = data.frame(hello=rnorm(1:15), world=rnorm(1:15));
cat(toString(object), "\n");


| a b |
| 0.217785930312173 1.35892062758937|
| -0.0529272009376736 -1.3537444650507|
| -0.0914533595349014 -0.283164123247757|
| 0.209099248751634 -0.994596208802379|
| 1.41207193727609 0.754568758899429|
| 0.0271570788346636 0.722728545001598|
| 1.09160395973882 -0.466194711071017|
| -0.676012596015548 0.247534965195453|
| 0.36022565974381 -0.318822054653857|
| 0.330251755314496 -0.379818935427323|
| 1.29858423625996 0.393100959746072|
| 1.79061048596737 0.124484229714237|
| -0.636849202004066 -1.48651181772674|
| 1.08795175312078 0.231693241998673|
| -0.810214549466222 -0.753200696904484|

最佳答案

在查看了 print.data.frame 函数后,我敢说以下可能是一个更好的解决方案(更好的格式,它几乎与经过良好测试的内置函数的代码相同)

toString.data.frame = function (object, ..., digits=NULL, quote=FALSE, right=TRUE, row.names=TRUE) {
nRows = length(row.names(object));
if (length(object)==0) {
return(paste(
sprintf(ngettext(nRows, "data frame with 0 columns and %d row", "data frame with 0 columns and %d rows")
, nRows)
, "\\n", sep = "")
);
} else if (nRows==0) {
return(gettext("<0 rows> (or 0-length row.names)\\n"));
} else {
# get text-formatted version of the data.frame
m = as.matrix(format.data.frame(object, digits=digits, na.encode=FALSE));
# define row-names (if required)
if (isTRUE(row.names)) {
rowNames = dimnames(object)[[1]];
if(is.null(rowNames)) {
# no row header available -> use row numbers
rowNames = as.character(1:NROW(m));
}
# add empty header (used with column headers)
rowNames = c("", rowNames);
}
# add column headers
m = rbind(dimnames(m)[[2]], m);
# add row headers
m = cbind(rowNames, m);
# max-length per-column
maxLen = apply(apply(m, c(1,2), stringr::str_length), 2, max, na.rm=TRUE);

# add right padding
## t is needed because "If each call to FUN returns a vector of length n, then apply returns an array of dimension c(n, dim(X)[MARGIN])"
m = t(apply(m, 1, stringr::str_pad, width=maxLen, side="right"));
m = t(apply(m, 1, stringr::str_pad, width=maxLen+3, side="left"));
# merge columns
m = apply(m, 1, paste, collapse="");
# merge rows (and return)
return(paste(m, collapse="\n"));
}
}

关于右 |数据帧到 "plain text",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45508982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com