Displaying 4 results from an estimated 4 matches for "querent".
2017 Feb 16
1
possible improvement to ?with examples
A querent on StackOverflow asked about the with() function
http://stackoverflow.com/questions/42283479/why-when-to-use-with-function#42283479
and asked about the example in ?with
library(MASS)
with(anorexia, {
anorex.1 <- glm(Postwt ~ Prewt + Treat + offset(Prewt),...
2011 Jun 06
1
list demographics
...tings, obtained from the website. I took
my best shot at classifying the names given in the email header as
male/female, but ended with a fair number of unknowns.
This dataset had 2797 list messages, in 895 questions. 1501 messages
were replies to one of those questions by someone not the original
querent.
Across all messages, 6.5% were from women, 77.8% from men, 15.7% unknown.
For new questions, 11.7% were from women, 61.2% from men, 27.0% unknown.
Among responses to other people's questions, 2.6% were from women,
92.3% from men, 5.1% unknown.
Nine women answered other people's questio...
2009 Oct 06
3
Plot
Hi All,
Days <- matrix(c("Monday", "Tuesday", "Wed", "Thu", "Fri", "Sat",
"Sun"),7,1)
Hum <-matrix(c(56,57,60,75,62,67,70),
Temp<-matrix(c(76,77,81,95,82,77,83),
Using the above information I want plot humidity and temperature on Y-axis
and days on X-axis
Any help is appreciated!
[[alternative HTML version
2011 Jul 09
3
Confusing piece of R code
m0<-epxression((4*theta1*theta2-theta3^2)/(2*x*theta3^2)-0.5*theta1*x)
params<-all.vars(m0) this reads all the params
from m0 so theta1,2 and 3 correct?
params<-params[-which(params=="x")] checks which params are multiplied
by x?
np<-length(params)
for(i in 1:6){
esp<-get(sprintf("m%d",i-1))