search for: lcp301

Displaying 13 results from an estimated 13 matches for "lcp301".

Did you mean: bcpy01
2018 May 11
3
add one variable to a data frame
...ying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to receive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) ---------------------------------------------------------------------
2018 May 11
0
add one variable to a data frame
...o this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to r eceive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) --------------------------------------------------------------------- ______________________________________________ R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://ww...
2018 Jan 14
0
consolidate three function into one
...ying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to receive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) ---------------------------------------------------------------------
2018 Jan 14
2
consolidate three function into one
...ng to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to r eceive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) --------------------------------------------------------------------- ______________________________________________ R-help at r-project.org<mailto:R-help at r-project.org> mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting g...
2018 Jan 14
0
consolidate three function into one
...this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to r > eceive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) > --------------------------------------------------------------------- > > ______________________________________________ > R-help at r-project.org<mailto:R-help at r-project.org> mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help >...
2018 Jan 14
0
consolidate three function into one
...ng to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to r eceive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) --------------------------------------------------------------------- ______________________________________________ R-help at r-project.org<mailto:R-help at r-project.org> mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting g...
2018 Jan 15
2
consolidate three function into one
...eleting the message and any accompanying > files from your system. If, due to the security risks, you do not wish > to r eceive further communications via e-mail, please reply to this > message and inform the sender that you do not wish to receive further > e-mail from the sender. (LCP301) > --------------------------------------------------------------------- > > ______________________________________________ > R-help at r-project.org<mailto:R-help at r-project.org> mailing list -- To > UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help &gt...
2018 Jan 15
0
consolidate three function into one
...age and any accompanying > > files from your system. If, due to the security risks, you do not wish > > to r eceive further communications via e-mail, please reply to this > > message and inform the sender that you do not wish to receive further > > e-mail from the sender. (LCP301) > > --------------------------------------------------------------------- > > > > ______________________________________________ > > R-help at r-project.org<mailto:R-help at r-project.org> mailing list -- To > > UNSUBSCRIBE and more, see https://stat.ethz.ch/mai...
2018 Feb 10
1
please help me a little
...ying to this message and deleting the message and any accompanying files from your system. If, due to the security risks, you do not wish to receive further communications via e-mail, please reply to this message and inform the sender that you do not wish to receive further e-mail from the sender. (LCP301) ---------------------------------------------------------------------
2018 May 11
0
add one variable to a data frame
Hi, Here's one way to approach it, using the coercion of factor to numeric. Note that I changed your data.frame() statement to avoid coercing strings to factors, just to make it simpler to set the levels. dat1 <-data.frame(N=seq(1, 12,1), B=c("29_log","29_log", "29_log", "27_cat", "27_cat", "1_log", "1_log",
2018 Jan 15
1
consolidate three function into one
...nd deleting the message and any accompanying > files from your system. If, due to the security risks, you do not wish > to r eceive further communications via e-mail, please reply to this > message and inform the sender that you do not wish to receive further > e-mail from the sender. (LCP301) > --------------------------------------------------------------------- > > ______________________________________________ > R-help at r-project.org<mailto:R-help at r-project.org><mailto:R-help at r-project.org<mailto:R-help at r-project.org>> mailing list -- To >...
2018 May 11
3
add one variable to a data frame
Hi All, I have a data frame dat1: dat1 <-data.frame(N=seq(1, 12,1), B=c("29_log","29_log", "29_log", "27_cat", "27_cat", "1_log", "1_log", "1_log", "1_log", "1_log",
2018 May 11
2
add one variable to a data frame
Sarah et. al.: As a matter of aesthetics (i.e. my personal ocd-ness) I prefer using the public API of an object, i.e. *not* to makes use of the representation of a factor as essentially an integer vector with labels, but rather to use its documented behavior. (Feel free to ignore this remark!) Anyway, >cumsum(!duplicated(dat1$B)) [1] 1 1 1 2 2 3 3 3 3 3 4 4 will do it. This is very