Convert Julia array to dataframe

前端 未结 4 451
遇见更好的自我
遇见更好的自我 2021-01-13 12:53

I have an array X that I\'d like to convert to a dataframe. Upon recommendation from the web, I tried converting to a dataframe and get the following error.

j

4条回答
  •  一个人的身影
    2021-01-13 13:18

    So I found this online and honestly felt dumb.

    using CSV
    WhatIWant = DataFrame(WhatIHave)
    

    this was adapted from an R guide, but it works so heck

提交回复
热议问题