Does anyone have experience opening hdf files in R (Windows OS)?

前端 未结 2 901
我寻月下人不归
我寻月下人不归 2020-12-19 10:55

I am unable to work with hdf files in R. I believe the R package hdf5 would be what I need to work with these files, but am having difficulty installing it. I g

2条回答
  •  萌比男神i
    2020-12-19 11:47

    The Bioconductor rhdf5 package is available on all platforms and does not have system dependencies.

    source("http://bioconductor.org/biocLite.R")
    biocLite("rhdf5")
    

    and then each session

    library("rhdf5")
    

提交回复
热议问题