Hi,

Here is another problem with data frame subsetting:

  > df <- data.frame(aa=1:3)
  > value <- data.frame(aa=11:12, row.names=c("A", "B"))

  > `[<-`(df, 4:5, , value=value)
    aa
  1  1
  2  2
  3  3
  A 11
  B 12

  > `[<-`(df, 5:4, , value=value)
    aa
  1  1
  2  2
  3  3
  B 12
  A 11

For this last result, the rownames of the 2 last rows should
be swapped.

H.

--
Hervé Pagès

Program in Computational Biology
Division of Public Health Sciences
Fred Hutchinson Cancer Research Center
1100 Fairview Ave. N, M1-B514
P.O. Box 19024
Seattle, WA 98109-1024

E-mail: hpa...@fredhutch.org
Phone:  (206) 667-5791
Fax:    (206) 667-1319

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to