We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#Code below throws error: subscript out of bound
library(RCurl) H112.raw<-getURL("https://raw.githubusercontent.com/bac3917/Cauldron/master/Huitema11_1.csv") H112<-read.csv(text=H112.raw) head(H112)
library(probemod) adj2<-lm(y~x+D,data=H112) ls(adj2) JMresult1 <- jn(adj2, dv='fitted.values', iv='xlevels', mod='qr',alpha = .01)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#Code below throws error: subscript out of bound
library(RCurl)
H112.raw<-getURL("https://raw.githubusercontent.com/bac3917/Cauldron/master/Huitema11_1.csv")
H112<-read.csv(text=H112.raw)
head(H112)
J-N approach helps to define regions of significance and non-significance
use probemod package
library(probemod)
adj2<-lm(y~x+D,data=H112)
ls(adj2)
JMresult1 <- jn(adj2, dv='fitted.values', iv='xlevels', mod='qr',alpha = .01)
The text was updated successfully, but these errors were encountered: