Inspecting and visualizing gaps/blanks and structure in large dataframes

前端 未结 4 1814
遥遥无期
遥遥无期 2021-01-02 21:51

I have a large dataframe (400000 x 50) that I want to visually inspect for structure and blanks/gaps.

Is there an existing library or ggplot2 function, that can spit

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-02 22:51

    Give this a shot.

    require(Amelia)
    data(freetrade)
    missmap(freetrade)
    

    It won't do the red, blue green, but it gets your grid. I'd also give the VIM package a shot as it provides numerous options for visualizing missing data.

    http://www.statistik.tuwien.ac.at/forschung/CS/CS-2008-1complete.pdf

提交回复
热议问题