Displaying 15 results from an estimated 15 matches for "lmn".
Did you mean:
len
2012 Jul 18
2
How to have original (name) order after melt and cast command
...(c("xyz","xyz","xyz","xyz","xyz","xyz","xyz","xyz", "xyz","abc", "abc","abc","abc","abc","abc", "abc","abc","abc","lmn","lmn", "lmn","lmn", "lmn","lmn", "lmn","lmn","lmn")),
rate = c(c(0.065550707, 0.001825007, 0.054441969, 0.020810572, 0.073430586, 0.037299722, 0.099807733, 0.042072817, 0.099487289, 5.550737022, 4.877620777, 5....
2008 Nov 25
2
dataframe
hi there
I have a dataframe
abc 123 345
abc 345 456
lmn 567 345
hkl 568 535
lmn 096 456
lmn 768 094
i want the uniques of column 1 and there corresponsing column 2 and 3
output
abc 123 345
lmn 567 345
hkl 568 535
cbind(DF1[,1],DF1[which(unique(DF1[,1]),c(2,3)])
but didnt work
kindly let me know how to go abt it
ramya
--
View this message in cont...
2010 Feb 10
4
Readjusting the OUTPUT csv file
Dear R helpers
I have some variables say ABC, DEF, PQR, LMN and XYZ. I am choosing any three varaibles at random at a time for my analysis and name these files as input1.csv, input2.csv and input3.csv. So if I choose variables say ABC, DEF and PQR, I am passing the specifications of these variables to input1.csv, input2.csv and input3.csv respectively.
T...
2011 Mar 29
3
Reversing order of vector
Dear R helpers
Suppose I have a vector as
vect1 = as.character(c("ABC", "XYZ", "LMN", "DEF"))
> vect1
[1] "ABC" "XYZ" "LMN" "DEF"
I want to reverse the order of this vector as
vect2 = c("DEF", "LMN", "XYZ", "ABC")
Kindly guide
Regards
Vincy
[[alternative HTML version dele...
2010 Jan 18
2
Predict polynomial problem
I have a function that fits polynomial models for the orders in n:
lmn <- function(d,n){
models=list()
for(i in n){
models[[i]]=lm(y~poly(x,i),data=d)
}
return(models)
}
My data is:
> d=data.frame(x=1:10,y=runif(10))
So first just do it for a cubic:
> mmn = lmn(d,3)
> predict(mmn[[3]])
1 2 3 4 5...
2008 Nov 05
3
Dataframe help
Hi there,
I have a dataframe length.unique.info
> length.unique.info
abc 12 345
def 16 550
lmn 6 600
I want those names that fall under the condition (length.unique.info[,2][i]
<=5 && length.unique.info[,3][i] >=500)
abcder<-length.unique.info[which(length.unique.info[,2][i] <=5 &&
length.unique.info[,3][i] >= 500),1]
will "&&" look for b...
2008 Nov 21
3
list of list objects
hi there,
I have a list of list objects i need to remove the top layer
[[1]]
[1].0
"ABC" "DEF""LMN"
[1].1
"WER" "ERT" "TRY"
[[2]]
[2].0
"ASD","wer""qwe"
[2].1
"wdv""ghj""ggj"
I wanna avoid the top layer...that is [[1]] [[2]] shouldnt be there
just a simple list is wat i need.
[1].0
"ABC" &q...
2009 Dec 03
2
Dataframe help
Hi there
I have two dataframes
Dataframe_1
column_1 colum_2
121 12345
145 1675
167 2765
Dataframe_2
column_1 column2
121 abc
345 lmn
167 efg
I want a resulting dataframe
121 12345 abc
167 2765 efg
how do i go abt it
Ramya
--
View this message in context: http://n4.nabble.com/Dataframe-help-tp947934p947934.html
Sent from the R help mailing list archive at Nabble.com.
2013 Apr 26
2
Splitting data.frame and saving to csv files
Dear R Forum,
I have a data.frame as
df = data.frame(date = c("2013-04-15", "2013-04-14", "2013-04-13", "2013-04-12", "2013-04-11"),
ABC_f = c(62.80739769,81.04525895,84.65712455,12.78237251,57.61345256),
LMN_d = c(21.16794336,54.6580401,63.8923307,87.59880367,87.07693716),
XYZ_p = c(55.8885464,94.1358684,84.0089114,98.99746696,64.71083712),
LMN_a = c(56.6768395,25.81530198,40.12268441,35.74175237,47.95892209),
ABC_e = c(11.36783959,62.29651784,47.63481552,32.27820673,52.12561419),
LMN_c = c(45.4484695,...
2001 Oct 02
1
problem with while loop with next (was RE: file connection, w hile, readLines and browser)
...(readln, " "))
> if(length(x) <= 6 && x[3] == x[4]) next
> i <- i + 1
> }
> return(invisible())
> }
>
> Data file:
> 1 0.00 ABC ABC 1.00 0
> 2 0.00 DEF DEF 1.00 0 CDE 1.00 0 XYZ 0.72 0
> 3 0.00 abc abc 1.00 0 ghi 1.00 0 stu 0.72 0 lmn 0.80 0
>
> R call:
> trycon("C:/home/data.txt", 4)
> Error in while (length(readln <- readLines(f.con, 1)) > 0) { :
> missing value where logical needed
>
> The "if(...) next" line seems to be the source of the
> problem, but the error
> me...
2004 Apr 10
0
handle route table in kernel
...e table number (from 0 to 255) first. ip_rt_ioctl() called fib_convert_rtentry() to fill the fields of the req.rtm, such as the rtm_protocol, rtm_scope, rtm_type, etc. But where is rtm_table is assigned value?
Or is there any other better method to change the routing table in the kernel?
Thanks,
LMN
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2001 Oct 02
0
An example (was RE: file connection, while, readLines and bro wser)
...(f.con, 1)) > 0 ) {
x <- unlist(strsplit(readln, " "))
if(length(x) <= 6 && x[3] == x[4]) next
i <- i + 1
}
return(invisible())
}
Data file:
1 0.00 ABC ABC 1.00 0
2 0.00 DEF DEF 1.00 0 CDE 1.00 0 XYZ 0.72 0
3 0.00 abc abc 1.00 0 ghi 1.00 0 stu 0.72 0 lmn 0.80 0
R call:
trycon("C:/home/data.txt", 4)
Error in while (length(readln <- readLines(f.con, 1)) > 0) { :
missing value where logical needed
The "if(...) next" line seems to be the source of the problem, but the error
message and the behaviour of browser() really th...
2001 Oct 02
1
RE: problem with while loop with next
...> > i <- i + 1
> > > }
> > > return(invisible())
> > > }
> > >
> > > Data file:
> > > 1 0.00 ABC ABC 1.00 0
> > > 2 0.00 DEF DEF 1.00 0 CDE 1.00 0 XYZ 0.72 0
> > > 3 0.00 abc abc 1.00 0 ghi 1.00 0 stu 0.72 0 lmn 0.80 0
> > >
> > > R call:
> > > trycon("C:/home/data.txt", 4)
> > > Error in while (length(readln <- readLines(f.con, 1)) > 0) { :
> > > missing value where logical needed
> > >
> > > The "if(...) next" l...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list.
I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without
modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...Xd>AN
z^5bL^YIu&^i}*IO8Tb*h1x+m?_YraO-f9kK8-ndbxnFkZ0p!mk52B8d523)nA4Y5%
zc?8i1&?!y%*AB2fDn_U%X=p)|*$H~>E<~{-?*`{evPTZ_36z~g_KL2#-Rr?LVjpUs
zPo4yxOZJ0vIXNJTxm*X)(V>Sx*+8BmnaXJLG|EmTht0;G5yEu4pGCRF<OmUj=YThp
z=Ybz4N6m2 at L&84?<wD01+e%J=eF>QhLgXX}yU7dSJB6;CMq~G!F&lmnIh)8?bZ!)R
z2?dry#;P)tybSt-<Q3o@<W=BZ<Tc<e<aOZH<QzEXkT($DPu>K7&08QWAa8 at Pk-P)^
zBzYHj4SCP(+D`BUA4Vh7$@|g*d?4|MApiX%pb6w-WR4}DAU=+KY8LtoHQY-+2i{A*
zK*o6TB at u_JuMnR>z6N~-`3Cq9`PMA(ohhyFk^i3`h){<gfe(<Mh)|QCrAD4bW&=47
z2~__A@<DRJEc-F&V at QK4uOLRL1d}>i...