Displaying 3 results from an estimated 3 matches for "keys2".
Did you mean:
keys
2008 Sep 14
5
difference of two data frames
Hello
I have 2 data frames DF1 and DF2 where DF2 is a subset of DF1:
DF1= data.frame(V1=1:6, V2= letters[1:6])
DF2= data.frame(V1=1:3, V2= letters[1:3])
How do I create a new data frame of the difference between DF1 and DF2
newDF=data.frame(V1=4:6, V2= letters[4:6])
In my real data, the rows are not in order as in the example I provided.
Thanks much
Joseph
[[alternative HTML version
2009 Mar 10
3
reliability, scale scores in the psych package
...[6,] 15.50 4.571429
[7,] 10.25 3.857143
[8,] 8.75 3.000000
[9,] 9.00 1.857143
[10,] 8.75 3.142857
>
> #This does not do what I expected. Mean interest scores are higher than score of the highest item.
> key.list2 <- list(silence=1:4, interest=c(5,6,-7,-8,9,10,11))
> keys2 <- make.keys(length(names(Data.score)), key.list2, item.labels=names(Data.score))
> scored2 <- score.items(keys2, Data.score, missing=FALSE, totals=FALSE)
> scored2$scores
silence interest
[1,] 35.25 14.71429
[2,] 36.50 15.28571
[3,] 9.25 15.42857
[4,] 2.75 15.85714...
2008 May 20
4
Need help with rsync.
I have two hosts which have their respective keys loaded into each others
.ssh/authorized-keys2 file for root. I want to move a directory tree from one
host to the other via rsync to maintain a shadow structure of the application
provided on the main host.
This is the relevant part of the command:
rsync -avz --rsh=ssh --delete-after /var/data/pas-redmine
root at inet01.mississauga.harte-ly...