Re: [R] [FORGED] Dependent Variable in Logistic Regression

2020-08-01 Thread Abby Spurdle
That's a bit harsh. Isn't the best advice here, to post a reproducible example... Which I believe has been mentioned. Also, I'd strongly encourage people to use package+function name, for this sort of thing. stats::glm As there are many R functions for GLMs... On Sun, Aug 2, 2020 at 12:47

Re: [R] [FORGED] Dependent Variable in Logistic Regression

2020-08-01 Thread Rolf Turner
On 2/08/20 5:39 am, Paul Bernal wrote: Dear friends, Hope you are doing great. I want to fit a logistic regression in R, where the dependent variable is the covid status (I used 1 for covid positives, and 0 for covid negatives), but when I ran the glm, R complains that I should make the

Re: [R] RNA Seq Analysis in R

2020-08-01 Thread Rasmus Liland
On 2020-08-01 15:52 -0400, Matthew McCormack wrote: | On 8/1/20 1:13 PM, Jeff Newmiller wrote: | | On August 1, 2020 4:01:08 AM PDT, Anas Jamshed wrote: | | | I performed this in GEO2R and find | | | R script there and Runs R script Anas, how did you come up with this script at all by reading

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread William Dunlap via R-help
I like using a logical response in cases like this, but put its construction in the formula so it is unambiguous when I look at the results later. > d <- data.frame(Covid=c("Pos","Pos","Neg","Pos","Neg","Neg"), Age=41:46) > glm(family=binomial, data=d, Covid=="Pos"~Age) Call: glm(formula = Covid

Re: [R] RNA Seq Analysis in R

2020-08-01 Thread Matthew McCormack
As with the previous post, I agree that Bioconductor will be a better place to ask this question. As a quick thought you also might try to adjust the p-value in the last line: DEGs = subset(tT, P.Value < 0.01 & abs(logFC) > 2). You could play around with the P.Value, 0.01 is pretty low, you

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Rui Barradas
Hello, Inline. Às 20:01 de 01/08/2020, John Fox escreveu: Dear Paul, I think that this thread has gotten unnecessarily complicated. The answer, as is easily demonstrated, is that a binary response for a binomial GLM in glm() may be a factor, a numeric variable, or a logical variable, with

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Patrick (Malone Quantitative)
I didn't mean to imply that was the only time that it was required, only that it's not universal in R. On Sat, Aug 1, 2020 at 2:22 PM Bert Gunter wrote: > ... yes, but so does lm() for a categorical **INdependent** variable with > more than 2 numerically labeled levels. n levels = (n-1) df for

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Rui Barradas
Hello, From the documentation, help('glm'): Details A typical predictor has the form|response ~ terms|where|response|is the (numeric) response vector and|terms|is a series of terms which specifies a linear predictor for|response|. For|binomial|and|quasibinomial|families the response

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread John Fox
Dear Paul, I think that this thread has gotten unnecessarily complicated. The answer, as is easily demonstrated, is that a binary response for a binomial GLM in glm() may be a factor, a numeric variable, or a logical variable, with identical results; for example: --- snip

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Bert Gunter
You appear to be confusing a binomial **response** with categorical "dependent variables." glm() of course fits continuous or categorical dependent variables. If a continuous dependent variable has only 2 values, the results for glm() will be the same whether or not it is considered to be

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Patrick (Malone Quantitative)
No, R does not. glm() does in order to do logistic regression. On Sat, Aug 1, 2020 at 2:11 PM Paul Bernal wrote: > Hi Bert, > > Thank you for the kind reply. > > But what if I don't turn the variable into a factor. Let's say that in > excel I just coded the variable as 1s and 0s and just

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Bert Gunter
... and further: " If a continuous independent variable has only 2 values,..." Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Aug 1, 2020 at 11:11 AM

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Bert Gunter
Sorry, typo.My first sentences should read: "You appear to be confusing a binomial **response** with categorical "independent variables." glm() of course fits continuous or categorical independent variables." Bert Gunter "The trouble with having an open mind is that people keep coming along and

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Paul Bernal
Dear friend, I am aware that I have a binomial dependent variable, which is covid status (1 if covid positive, and 0 otherwise). My question was if R requires to turn a binomial response variable into a factor or not, that's all. Cheers, Paul El sáb., 1 de agosto de 2020 1:22 p. m., Bert

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Bert Gunter
... yes, but so does lm() for a categorical **INdependent** variable with more than 2 numerically labeled levels. n levels = (n-1) df for a categorical covariate, but 1 for a continuous one (unless more complex models are explicitly specified of course). As I said, the OP seems confused about

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Paul Bernal
Hi Bert, Thank you for the kind reply. But what if I don't turn the variable into a factor. Let's say that in excel I just coded the variable as 1s and 0s and just imported the dataset into R and fitted the logistic regression without turning any categorical variable or dummy variable into a

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Rich Shepard
On Sat, 1 Aug 2020, Paul Bernal wrote: Hope you are doing great. I want to fit a logistic regression in R, where the dependent variable is the covid status (I used 1 for covid positives, and 0 for covid negatives), but when I ran the glm, R complains that I should make the dependent variable a

Re: [R] Dependent Variable in Logistic Regression

2020-08-01 Thread Bert Gunter
x <- factor(0:1) x <- factor("yes","no") will produce identical results up to labeling. Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Aug 1, 2020 at

[R] DEG Analysis in R through Bioconductor

2020-08-01 Thread Anas Jamshed
Basically I want to redo the methodology of the paper: https://www.nature.com/articles/s41598-018-23492-2 I choose microarray data GSE75693 of 30 patients with stable kidney transplantation and 15 with BKVN to identify differentially expressed genes (DEGs). I performed this in GEO2R and find R

[R] Dependent Variable in Logistic Regression

2020-08-01 Thread Paul Bernal
Dear friends, Hope you are doing great. I want to fit a logistic regression in R, where the dependent variable is the covid status (I used 1 for covid positives, and 0 for covid negatives), but when I ran the glm, R complains that I should make the dependent variable a factor. What would be more

Re: [R] RNA Seq Analysis in R

2020-08-01 Thread Jeff Newmiller
https://www.bioconductor.org/help/ On August 1, 2020 4:01:08 AM PDT, Anas Jamshed wrote: >I choose microarray data GSE75693 of 30 patients with stable kidney >transplantation and 15 with BKVN to identify differentially expressed >genes >(DEGs). I performed this in GEO2R and find R script there

[R] RNA Seq Analysis in R

2020-08-01 Thread Anas Jamshed
I choose microarray data GSE75693 of 30 patients with stable kidney transplantation and 15 with BKVN to identify differentially expressed genes (DEGs). I performed this in GEO2R and find R script there and Runs R script Successfully on R studio as well. The R script is : # Differential