Displaying 20 results from an estimated 100 matches similar to: "R interpretation"
2011 May 06
0
pcse package error message concerning nrows of using data
Dear R Community,
I am currently facing this seemingly obscure Problem with Panel
Corrected Standard Errors (PCSE) following Beck & Katz (1995). As the
authors suggest, I regressed a linear model (tmodel) with lm() with
option "na.action=na.exclude" (I have also tried other options here). My
dataframe is organized in pooled times series fashion, but with various
missing values
2010 Mar 13
1
Specify Includes Only
Hi, sorry if this has been asked before, but I just can't find anywhere on the net that tells me how to do this. I've been trying for ages to get this right, using various forms of --include-from, --exclude, --filter, etc.
I want to copy only specific directories that contain specific filetypes, from sourcedir to destdir. For example, I want to copy all .mp3 and all .ogg files found in
2007 Jan 24
1
mixed effects or fixed effects?
Hi,
I am running a learning experiment in which both training subjects and
controls complete a pretest and posttest. All analyses are being
conducted in R. We are looking to compare two training methodologies,
and so have run this experiment twice, once with each methodology.
Methodology is a between-subjects factor. Trying to run this analysis
with every factor included (ie, subject as a
2011 Oct 10
2
Collection_select
Hi,
I''m new using RoR and I have a ... trouble with
f.collection.select
What I have in a table is ... for example
group code
GroupA 07A
GroupA 08A
GroupA 10B
GroupB 06A
GroupB 11B
GroupB 07B
GroupC 10A
GroupC 09A
GroupC 09B
when I use
<%= f.collection_select :grupo, Equipo.find(:all), :id, :name, prompt:
''Choose a Group'' %>
2007 May 06
1
intersect of 2 data frames
Greetings!
I am a new user of R. The only one in my department, all others use SPSS.
I have two data sets of students with test scores, pretest and
posttest. The first column StuNum and then columns of scores.
The problem is that the lists are slightly different not all students
are in both data sets.
So I did:
intersect(pretest$StuNum, posttest$StuNum) -> common.id
At this point I need
2010 Jun 18
0
pcse package - clarifying question about arguments groupN and groupT
Just two clarifying questions about the package "pcse".
Argument "groupN": It should be a factor that tells us to what
subgroup each record belongs, right?
Argument "groupT" should be a vector that contains the time
identifier. Can it be just a factor (e.g., 1, 2, 3, etc.) - or does it
have to be in the date format?
Thank you very much!
--
Dimitri Liakhovitski
2004 Nov 11
1
Beating a dead horse - Roaming profiles / logon scripts
Using samba 3.0.8 and Suse ES 9.0 I'm having problems getting roaming
profiles/local profiles and logon scripts on a Win2k or WinXP workstation
working correctly. My bdc is supposed to be doing the authentication
against my PDC\LDAP server. Even when I enable Only allow local profiles
on the XP machine it will logout a domain samba user with a sorry no
roaming or local profile available
2006 Mar 21
2
How to make extension groups ???
Hello All,
i am repeating this question for the sixth time but i think i was not explaining the problem correctly. ............. Now i will try to explain it......
I have 4 telephone lines(PSTN) in my PBX.
Now I want to make groups of the extensions to use that lines.
e.g.
extensions 12,13 & 31 are in groupA
extensions 14 - 20 are in groupB
extensions 21 - 30
2009 Dec 03
0
samba group access
Dear All
I have a question from you, if you can please answer it.
I have a linux server, with samba installed on it.
I have 3 groups as, GroupA, GroupB, GroupC
Each group is having let suppose 10 members from 0-9
I have 3 shares on my smb.con as Share1, Share2, and Share3
Now what I want it to give the read access to every one on each share
and
give write access of GroupA to Share1, Share2
give
2012 May 31
1
please help! Extract the row to the new file by using if-statment
Dear all,
I find some troubles about how to extact the row from csv. file by using
if-statement condition.
I want to extract the row if the rainfall is greater than the mean of
rainfall and using the wrfta divided into 3 groups
that's
rainfall greater than mean -> group A ( create file group A_rain)
-> groupB ( create file
group B_rain)
2011 Mar 19
1
how to access the elements of a univariate results table with Anova (library car)
Dear R users, I use the excelent Anova function of the library car because
the easy way to get sphericity correction. Unless I use the scan function. I
have not been able to access the values of sum squares and degrees of
freedom for each effect in the univariate summary table.
Example of the car library for Anova function:
library(car)
phase <- factor(rep(c("pretest",
2019 Nov 02
0
Subject=Re: Mac Clients Disconnect with: source3/smbd/service.c:1050(close_cnum) closed connection to service data
And sorry, to answer your question here's what the smb.conf's looked like:
SERVERA - Ubuntu 18.04 (Samba 4.7.6) sudden issue:
Hi Louis,
> When you get a chance, it seems like a number of our excel files were
> corrupted. We can't seem to open them at all. I tried opening them from R
> and SPSS.
> They give different errors:
> My error (mac):
> Excel cannot open the
2006 Jan 04
2
How to produce this graphic
Hello there,
I would like to produce a plot of x<-c(4,5,6),which is the mean of each
group and y<-c('groupA','groupB','groupC').
plot (x,y) can not produce any graphics because y is not numerical.
What should I do to produce this graphic?
Thank you in advance
Lisa Wang
Princess Margaret Hospital
Toronto,Ca
2012 Jun 07
4
Dealing with multiple gid changes
So I discovered yesterday that if puppet changes the gid of a group it
doesn''t go through the file system and update them with the new correct gid
(at least this was the case on RHEL5 and client puppet v2.6.16 and
puppetmaster 2.7.12). Now I thought that it might be possible to have
puppet execute something like find /home/ -group <old_gid> | xargs chgrp
groupname. However
2009 Oct 15
0
Two way anova repeated measures and post hoc testing - several questions
Hi,
I am fairly new to R and still trying to figure out how it all works, and I
have run into a few issues. I apologize in advance if my questions are a bit
basic, I'm also no statistics wizard, so part of my problem my be a more
fundamental lack of knowledge in the field.
I have a dataset that looks something like this:
Week Subj Group Readout
0 1 A 352.2
1 1 A
2010 May 15
3
Discretize factors?
Hi,
I'm looking for an easy way to discretize factors in R
I've noticed that the lm function does this automatically with a nice
result.
If I have
group <- c("A", "B","B","C","C","C")
and run:
lm(result ~ x1 + group)
The lm function has split the group into separate binary variables {0,1}
before performing the
2009 Oct 19
1
Reposting various problems with two-way anova, lme, etc.
Hi,
I posted the message below last week, but no answers, so I'm giving it
another attempt in case somebody who would be able to help might have missed
it and it has now dropped off the end of the list of mails.
I am fairly new to R and still trying to figure out how it all works, and I
have run into a few issues. I apologize in advance if my questions are a bit
basic, I'm also no
2008 Aug 23
3
graphs for pretest data
Is there an easy way to make graphs for the following data. I have
pretest and posttest scores for men and
women. I would like to form a 'titlted segment' plot for the data.
That is, make segments joining the scores,
with different types of segments for men and women.
Example data:
menpre <- c(43,42,26,39,60,60,46)
menpost <- c(40,41,36,42,54,58,43)
womenpre <-
2012 Jul 21
2
car::Anova - Can it be used for ANCOVA with repeated-measures factors.
Dear list,
I would like to run an ANCOVA using car::Anova with repeated measures factors, but I can't figure out how to do it. My (between-subjects) covariate always interacts with my within-subject factors.
As far as I understand ANCOVA, covariates usually do not interact with the effects of interest but are simply additive (or am I wrong here?).
More specifically, I can add a covariate as
2009 Feb 18
2
[package-car:Anova] extracting residuals from Anova for Type II/III Repeated Measures ?
Hello dear R members.
I have been learning the Anova syntax in order to perform an SS type III
Anova with repeated measures designs (thank you Prof. John Fox!)
And another question came up: where/what are the (between/within) residuals
for my model?
############ Play code:
phase <- factor(rep(c("pretest", "posttest", "followup"), c(5, 5, 5)),