search for: kickout

Displaying 7 results from an estimated 7 matches for "kickout".

2012 Apr 04
3
Remove carriage return in writing tab-delimited file.
Having problems with the write.table function. I can write a tab delimited file just fine, but for each line in my matrix its inputs a carriage return when i dont want it to. For example my matrix might be: ID V1 V2 V3 FARY1004 1 2 3 FARY2067 2 3 1 FARY4587 2 2 2 And I want the written File to be: FARY1004 1 2 3FARY2067 2 3 1FARY4587 2 2 2 TIA -- View this
2011 Nov 11
3
Combining Overlapping Data
I've scoured the archives but have found no concrete answer to my question. Problem: Two data sets 1st data set(x) = 20,000 rows 2nd data set(y) = 5,000 rows Both have the same column names, the column of interest to me is a variable called strain. For example, a strain named "Chab1405" appears in x 150 times and in y 25 times... strain "Chab1999" only appears 200
2011 Oct 21
2
'Apply' giving me errors
So i have a simple function: bmass=function(y){ weight=y$WT*y$MSTR return(bio) } And want to apply to a whole bunch of rows in my data.frame: final1=apply(final,1,yldbu) BUT...recieve the following error: "Error in y$WT : $ operator is invalid for atomic vectors" However when i try: > final[1,]$WT*final[1,]$MSTR [1] 156.3 It gives me the correct answer....what is apply not
2006 Oct 31
0
Some accounts getting locked after server upgrade
...domain master = True kernel oplocks = No remote browse sync = 192.168.0.25 [jblow] path = /usr/local/share/people/%u read only = No create mask = 0600 directory mask = 0700 locking = No /etc/passwd jblow:x:313:100:Joe Blow:/usr/share/kickout:/bin/false /etc/shadow jblow:$2a$10$VY7nr/rYY3bn8bbExzU./O4ZWTrUM17CGe96S8kpIlwPziAO7ZLO6:13451:0:99999:7::: any ideas... ? -- Matt Ingram Intermediate Unix Administrator, IS Canadian Bank Note Company, Limited \m/
2011 Oct 25
1
Unlist alternatives?
dfhfsdhf at ghghgr.com I ran a simple lme model: modelrandom=lmer(y~ (1|Test) + (1|strain), data=tempsub) Extracted the BLUPs: blups=ranef(modelrandom)[1] Even wrote myself a nice .csv file....: write.csv(ranef(modelrandom)[1],paste(x,"BLUPs.CSV")) This all works great. I end up with a .csv file with the names of my strains in the first column and the BLUP in the second
2008 May 05
3
MeetMeAdmin() working problem
Hello users, I have been working with a conference setup. My setup includes: 1)There will be an interface number provided to the user which might be a DID number or A Toll free number When user calls the number it asks for the conference room number and the user pin . on successfull authentication he will be participated in the conference 2)by didaling the same DID number the
2011 Oct 17
0
Analyze each factor separtely
Hello.... Trying to apply a model to each level of a factor For example, i have three levels of a variable I call 'Code'...I want to model the data under each level of code differently...I've attached a sample data set... http://r.789695.n4.nabble.com/file/n3913431/data.txt data.txt I.E for code 0HY0 I want to model y~ 1|strain + 1|code *both code and strain are random effects...