我想打印一个数据框,其中列是对齐中心的。下面是我尝试的,我认为打印数据框架测试1将导致列在中心对齐,但事实并非如此。关于我该怎么做的任何想法?
test=data.frame(x=c(1,2,3),y=c(5,6,7))
names(test)=c('Variable 1','Variable 2')
test[,1]=as.character(test[,1])
test[,2]=as.character(test[,2])
test1=format(test,justify='centre')
print(test,row.names=FALSE,quote=FALSE)
Variable 1 Variable 2
1 5
2 6
3 7
print(test1,row.names=FALSE,quote=FALSE)
Variable 1 Variable 2
1 5
2 6
3 7
问题是,为了使其按照您的预期工作,还需要指定" width
"参数。
这是一个示例:
test.1 <- data.frame(Variable.1 = as.character(c(1,2,3)),
Variable.2 = as.character(c(5,6,7)))
# Identify the width of the widest column by column name
name.width <- max(sapply(names(test.1), nchar))
format(test.1, width = name.width, justify = "centre")
# Variable.1 Variable.2
# 1 1 5
# 2 2 6
# 3 3 7
但是,这种方法如何与变量名称不同长度的列一起使用?不太好。
test.2 <- data.frame(A.Really.Long.Variable.Name = as.character(c(1,2,3)),
Short.Name = as.character(c(5,6,7)))
name.width <- max(sapply(names(test.2), nchar))
format(test.2, width = name.width, justify = "centre")
# A.Really.Long.Variable.Name Short.Name
# 1 1 5
# 2 2 6
# 3 3 7
当然有一个解决方法:通过用空格填充它们(使用format()
)
orig.names <- names(test.2) # in case you want to restore the original names
names(test.2) <- format(names(test.2), width = name.width, justify = "centre")
format(test.2, width = name.width, justify = "centre")
# A.Really.Long.Variable.Name Short.Name
# 1 1 5
# 2 2 6
# 3 3 7
调用此函数以获取这样的数据帧以显示这样的范围:
def pd_centered(df):
return df.style.set_table_styles([
{"selector": "th", "props": [("text-align", "center")]},
{"selector": "td", "props": [("text-align", "center")]}])
例如:
display(pd_centered(original_df))
这将中心对准标题和实际数据单元,并且您可以删除td
或th
,以便在您喜欢的情况下禁用任何一个。
来源:https://github.com/pandas-dev/pandas/issues/12144