英文: A functional approach in R to apply a function to a data frame that uses input from each column ...
数据图中数据的不一致对齐
英文: Inconsistent alignment of data in plot 问题 I have a df like this data <- data.frame(CAR.HEIGHT...
根据行和列索引在R中高效地填充矩阵
英文: Filling a matrix efficiently in R based on row and column indices 问题 我正在在R中填充一个矩阵,而做这件事最直观的方法是使用...
如何检测具有至少一个错位数字的个体
英文: How to detect individuals who have at least one misordered number 问题 这是我的数据集表示: ID<-c(1,1,1,1...
R Shiny 使用 Highcharter 的 hw_grid 不起作用
英文: R Shiny with Highcharter hw_grid not working 问题 library(highcharter) library(shiny) library(shin...
移除由R中的geom_smooth引起的趋势线。
英文: Remove the trend line caused by geom_smooth in R 问题 我试图移除使用geom_smooth创建的趋势线。期望只获取置信区间而不包括趋势线。 我...
以组特定的开始和结束填补分组的tsibble中的空白
英文: Fill gaps in a grouped tsibble with group-specific starts and ends 问题 我有一个tsibble,其中时间戳的观测数据已经汇总...
将缺失的数值标记为任何其他字符串。
英文: Label missing values as any other strings 问题 我使用 haven 创建了一个带标签的列。 library(dplyr) library(haven)...
合并具有相同结构的列表元素。
英文: Combine list elements of lists with same structure 问题 我有一个包含内部列表的列表,它们都具有相同的结构,在我的情况下,它们是字符向量。现在...
ggplot和boxplot:是否可以添加权重?
英文: ggplot & boxplot: is it possible to add weights? 问题 我正在尝试根据地区绘制工资的箱线图。 这是我的数据集的示例(由研究机构提供): ...
298