- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的数据
mydata=structure(list(
ABEV3 = c(15.2, 14.9, 15.22, 15.15, 15.18, 15.46, 15.49, 15.5, 15.37, 15.49, 15.64, 15.38),
AEDU3 = c(9.01, 8.56, 8.66, 8.64, 8.44, 8.52, 8.29, 8.27, 8.33, 8.26, 8.66, 8.49),
ALLL3 = c(7.71, 7.81, 7.57, 7.27, 7.29, 7.07, 7.11, 7.17, 7.27, 7.24, 7.1, 7.1),
BBAS3 = c(22.85, 22.78, 22.8, 22.22, 22.51, 21.11, 20.84, 20.79, 20.67, 20.9, 19.82, 18.95)),
row.names = c(NA,12L), class = "data.frame")
mydata
现在我构建了 4 个子示例,并将它们组织在一个名为 my_samples
的列表中:
samples_size = c(5,8,10,12)#the size of each sub sample
my_samples <- lapply(samples_size,function(x) slice(mydata, 1:x))
my_samples
在每个子样本中,我有 4 个变量:ABEV3 AEDU3 ALLL3 BBAS3
。
我想使用每个子样本运行线性回归。
我想为每个子样本运行的模型是:
ABEV3 ~ AEDU3 + Intercept
ABEV3 ~ ALLL3 + Intercept
ABEV3 ~ BBAS3 + Intercept
AEDU3 ~ ABEV3 + Intercept
AEDU3 ~ ALLL3 + Intercept
AEDU3 ~ BBAS3 + Intercept
ALLL3 ~ ABEV3 + Intercept
ALLL3 ~ BBAS3 + Intercept
ALLL3 ~ AEDU3 + Intercept
sub_sample_regression_results<-list()
对于每个子样本,我想将线性回归的结果保存在另一个名为 sub_sample_regression_results
的列表中。
我该怎么做?
最佳答案
也许这样的事情会奏效?
首先构造子集的列表
。
samples_size = c(5,8,10,12)#the size of each sub sample
my_samples <- lapply(samples_size, function(x) mydata[1:x, ])
根据您的 9 个线性模型创 build 计矩阵。
df.design <- setNames(expand.grid(names(mydata), names(mydata)), c("x", "y"))
df.design <- df.design[!(df.design$x == df.design$y) & df.design$y != "BBAS3", ]
lst.design <- apply(df.design, 1, function(w) sprintf("%s ~ %s", w[2], w[1]))
names(lst.design) <- sapply(lst.design, c)
将 OLS 线性模型应用于每个 list
条目和每个设计矩阵条目。这里我返回每个线性模型的系数。
res <- lapply(my_samples, function(df) {
lapply(lst.design, function(w) coef(lm(as.formula(w), data = df))) })
str(res)
#List of 4
# :List of 9
#..$ ABEV3 ~ AEDU3: Named num [1:2] 13.405 0.199
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ABEV3 ~ ALLL3: Named num [1:2] 17.203 -0.275
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ ABEV3 ~ BBAS3: Named num [1:2] 16.5732 -0.0638
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ AEDU3 ~ ABEV3: Named num [1:2] 0.723 0.525
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ AEDU3 ~ ALLL3: Named num [1:2] 5.715 0.391
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ AEDU3 ~ BBAS3: Named num [1:2] 0.919 0.342
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ ALLL3 ~ ABEV3: Named num [1:2] 21.912 -0.951
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ ALLL3 ~ AEDU3: Named num [1:2] 3.086 0.513
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ALLL3 ~ BBAS3: Named num [1:2] -10.413 0.793
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
# :List of 9
#..$ ABEV3 ~ AEDU3: Named num [1:2] 18.973 -0.434
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ABEV3 ~ ALLL3: Named num [1:2] 19.681 -0.599
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ ABEV3 ~ BBAS3: Named num [1:2] 19.614 -0.198
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ AEDU3 ~ ABEV3: Named num [1:2] 17.074 -0.559
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ AEDU3 ~ ALLL3: Named num [1:2] 4.42 0.56
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ AEDU3 ~ BBAS3: Named num [1:2] 4.37 0.19
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ ALLL3 ~ ABEV3: Named num [1:2] 24.32 -1.11
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ ALLL3 ~ AEDU3: Named num [1:2] 0.48 0.806
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ALLL3 ~ BBAS3: Named num [1:2] 1.614 0.262
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
# :List of 9
#..$ ABEV3 ~ AEDU3: Named num [1:2] 19.437 -0.487
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ABEV3 ~ ALLL3: Named num [1:2] 19.949 -0.633
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ ABEV3 ~ BBAS3: Named num [1:2] 19.191 -0.179
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ AEDU3 ~ ABEV3: Named num [1:2] 18.9 -0.68
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ AEDU3 ~ ALLL3: Named num [1:2] 3.923 0.622
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ AEDU3 ~ BBAS3: Named num [1:2] 4.271 0.194
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ ALLL3 ~ ABEV3: Named num [1:2] 23.31 -1.04
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ ALLL3 ~ AEDU3: Named num [1:2] 1.102 0.735
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ALLL3 ~ BBAS3: Named num [1:2] 2.674 0.215
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
# :List of 9
#..$ ABEV3 ~ AEDU3: Named num [1:2] 18.475 -0.369
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ABEV3 ~ ALLL3: Named num [1:2] 20.202 -0.666
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ ABEV3 ~ BBAS3: Named num [1:2] 17.958 -0.123
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ AEDU3 ~ ABEV3: Named num [1:2] 14.839 -0.413
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ AEDU3 ~ ALLL3: Named num [1:2] 4.993 0.481
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ALLL3"
#..$ AEDU3 ~ BBAS3: Named num [1:2] 6.8781 0.0765
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
#..$ ALLL3 ~ ABEV3: Named num [1:2] 22.47 -0.989
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "ABEV3"
#..$ ALLL3 ~ AEDU3: Named num [1:2] 1.869 0.639
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "AEDU3"
#..$ ALLL3 ~ BBAS3: Named num [1:2] 4.021 0.154
#.. ..- attr(*, "names")= chr [1:2] "(Intercept)" "BBAS3"
如果您想在 矩阵
的 列表
中组合系数,您可以执行以下操作
lapply(res, function(x) {
ret <- do.call(rbind, x);
colnames(ret) <- c("Intercept", "Var");
ret; })
#[[1]]
# Intercept Var
#ABEV3 ~ AEDU3 13.4050541 0.19913945
#ABEV3 ~ ALLL3 17.2026515 -0.27525253
#ABEV3 ~ BBAS3 16.5731628 -0.06376647
#AEDU3 ~ ABEV3 0.7231483 0.52470930
#AEDU3 ~ ALLL3 5.7146515 0.39141414
#AEDU3 ~ BBAS3 0.9186297 0.34214255
#ALLL3 ~ ABEV3 21.9122965 -0.95058140
#ALLL3 ~ AEDU3 3.0862335 0.51301853
#ALLL3 ~ BBAS3 -10.4133244 0.79282981
#
#[[2]]
# Intercept Var
#ABEV3 ~ AEDU3 18.9733098 -0.4340763
#ABEV3 ~ ALLL3 19.6809503 -0.5991119
#ABEV3 ~ BBAS3 19.6142297 -0.1979183
#AEDU3 ~ ABEV3 17.0743951 -0.5586008
#AEDU3 ~ ALLL3 4.4191430 0.5599467
#AEDU3 ~ BBAS3 4.3700611 0.1900484
#ALLL3 ~ ABEV3 24.3232840 -1.1104527
#ALLL3 ~ AEDU3 0.4804499 0.8064980
#ALLL3 ~ BBAS3 1.6144504 0.2619920
#
#[[3]]
# Intercept Var
#ABEV3 ~ AEDU3 19.437140 -0.4873076
#ABEV3 ~ ALLL3 19.949331 -0.6330202
#ABEV3 ~ BBAS3 19.190931 -0.1791020
#AEDU3 ~ ABEV3 18.895360 -0.6797437
#AEDU3 ~ ALLL3 3.922880 0.6223806
#AEDU3 ~ BBAS3 4.271256 0.1943599
#ALLL3 ~ ABEV3 23.309838 -1.0433341
#ALLL3 ~ AEDU3 1.101625 0.7353937
#ALLL3 ~ BBAS3 2.673734 0.2150764
#
#[[4]]
# Intercept Var
#ABEV3 ~ AEDU3 18.475130 -0.36934846
#ABEV3 ~ ALLL3 20.202213 -0.66636137
#ABEV3 ~ BBAS3 17.958427 -0.12301408
#AEDU3 ~ ABEV3 14.838614 -0.41272623
#AEDU3 ~ ALLL3 4.993001 0.48129045
#AEDU3 ~ BBAS3 6.878071 0.07646404
#ALLL3 ~ ABEV3 22.470287 -0.98887617
#ALLL3 ~ AEDU3 1.869333 0.63916585
#ALLL3 ~ BBAS3 4.020854 0.15399530
关于使用 R 中的列表中的样本运行线性回归,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51922925/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!