- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
有几种方法可以增加第一列的宽度。尝试
以下之一:
library(expss)
expss_output_viewer()
data(mtcars)
mtcars = apply_labels(mtcars,
mpg = "Miles/(US) gallon",
cyl = "Number of cylinders",
disp = "Displacement (cu.in.)",
hp = "Gross horsepower",
drat = "Rear axle ratio",
wt = "Weight (1000 lbs)",
qsec = "1/4 mile time",
vs = "Engine",
vs = c("V-engine" = 0,
"Straight engine" = 1),
am = "Transmission",
am = c("Automatic" = 0,
"Manual"=1),
gear = "Number of forward gears",
carb = "Number of carburetors"
)
# straightforward column width adjustment
calc_cro_cpct(mtcars, list(vs, am), list(total(), vs %nest% am)) %>%
htmlTable(., css.cell = c("width: 250px", # first column width
rep("width: 50px", ncol(.) - 1)) # other columns width
)
# row labels padding
calc_cro_cpct(mtcars, list(vs, am), list(total(), vs %nest% am)) %>%
htmlTable(padding.rgroup = paste(rep(" ", 20), collapse = ""))
# disable row grouping
calc_cro_cpct(mtcars, list(vs, am), list(total(), vs %nest% am)) %>%
htmlTable(row_groups = FALSE)
css.cell
和
padding.rgroup
记录在
expss
用于呈现 HTML 表格表示(请参阅
关于r - 使用 expss 包调整列宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52501414/
expss 包可以解决这个链接中提出的问题吗?,它是关于数据集中带有权重变量的多响应问题 How to use the R survey package to analyze multiple res
我一直在用expss经常并发现它非常有用,但是,在某些情况下,我的列值是不适合默认列宽的长字符串。 例如,下图显示了需要加宽的列。什么 htmlTables() expss 中的选项可以用来加宽列吗?
当使用 Expss 包运行表时,变量标签与数据帧中的每一行混合(表作为数据帧输出)。请参阅下面的代码。您会注意到每个行标签前面都有变量标签“性别”和一个栏 |特点。如何预防? #Required pa
我正在尝试编写一个相对简单的用户定义函数来输出交叉表,但不太确定为什么它没有运行。 我的测试数据: fp_within = structure(list(weight_cat.w1 = structu
我正在使用 expss::count_if。 虽然像这样的东西工作正常(即,只计算值等于“1”的值): (number_unemployed = count_if("1",unemployed_fie
我正在使用带有天堂标签的数据框(导入数据集时变量已经有值标签)。我需要运行两个变量的许多交叉制表。我正在使用 expss 包中的 cro 函数,因为默认情况下显示值标签,并计算加权交叉表。 但是,我得
我试图让 expss use_labels 与 dplyr 逻辑一起工作 - 请参见下面的示例。 小插图在 use_labels 下说明了以下内容。 到目前为止,变量标签支持仅适用于将在 data.f
应用标签是使调查数据在报告时易于理解的重要组成部分 所以我能找到的最好的例子是使用 expss::apply_labels() 例如著名的 mtcars 示例 https://cran.r-proje
我是一名优秀的程序员,十分优秀!