Hi,
This is Meghana Kulkarni.
I have a problem regarding the data I am working with.

I have a data frame as follows:
> x

  V1      V2          V3............V10
  414     A
  416     A
  417     A
  417     B
  418     A
  421     A
  421     B
  421     C
  422     A
I want to conver this data frame in the following format.

 > x

 V1      V2          V3............V10
  414     A

  416     A

  417     A
  417     B

  418     A

  421     A
  421     B
  421     C

  422     A

i.e. I want to insert a blank row after new entry in the 1st column. So that
it is easy for me to take readings in next columns when this data frame is
printed.
It would be great if you could tell me how this can be done.

Thank you,
Meghana.

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
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