I'm not sure why you'd want to, but here's one way to do it:

plotdat2[rep(1:nrow(plotdat), each=100), ]

This puts all the replicates of each row together.


plotdat2[rep(1:nrow(plotdat), times=100), ]

while this repeats each row then starts over.

If that answer doesn't make sense, then you should definitely go read
some of the great introductory material on R out there.

Sarah


On Tue, Aug 23, 2016 at 1:54 PM, André Luis Neves <andrl...@ualberta.ca> wrote:
> Hi, There!
>
> I have this data frame:
>
>> plotdat2
>   Firmicutes    Lower    Upper fTissue2
> 1   63.48023 59.15983 68.11614   CAECUM
> 2   61.42512 57.24651 65.90875    COLON
> 3   44.68343 41.62523 47.96632    RUMEN
>
>
> How can I replicate each line 100 times?
>
> I`m new in R command line, so sorry if my question is nonsense.
>
> Thanks,
>
> --
> A
> LAN
>

______________________________________________
R-help@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://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to