Displaying 3 results from an estimated 3 matches for "control3".
Did you mean:
control
2011 Jul 19
3
How to get predicted values of y for different x values?
Here is my model with interaction terms and control variables (I changed
variables names for easy read):
reg1 <- lm(y ~ x1*x2*x3 +control1 + control2 + control3)
x1 ranges from 0 to 6; x2 from 0 to 5; and x3 from 0 to 4. All three are
discrete ordinal variables; but I will treat them as continuous variables.
(a) How can I see the predicted values of y for each of these scenarios (210
scenarios I guess)?
(b) How can I see the predicted value of y for t...
2012 Sep 04
1
binary data
Dear list,
Hello to everybody, I´m interested in finding a package for statistical analysis of binary data, I have a matrix with the following structure:
Case1 Case2 Case 3 ....... CaseX Control1 Control2 Control3 ....... ControlY
Pep1 1 0 1 1 0 0 0 1
Pep2 1 1 1 1 1 0 0 1
Pep3 0 1 1 1 1 0 0 1
...
Pepz 1 1 1 1 1 0 0 1
I would like to know some R package to calculte similarity matrix or to make some statistical diferences between cases and controls
Any help it would be very appreciated
BW
Juan
--...
2017 Dec 02
0
How can you find the optimal number of values to randomly sample to optimize random forest classification without trial and error?
I have data set up like the following:
control1 <- sample(1:75, 3947398, replace=TRUE)
control2 <- sample(1:75, 28793, replace=TRUE)
control3 <- sample(1:100, 392733, replace=TRUE)
control4 <- sample(1:75, 858383, replace=TRUE)
patient1 <- sample(1:100, 28048, replace=TRUE)
patient2 <- sample(1:50, 80400, replace=TRUE)
patient3 <- sample(1:100, 48239, replace=TRUE)
control <- list(control1, control2, control3, control4)...