Reading data from URL

前端 未结 5 1711
生来不讨喜
生来不讨喜 2021-02-19 00:59

Is there a reasonably easy way to get data from some url? I tried the most obvious version, does not work:

readcsv(\"https://dl.dropboxusercontent.com/u/.../test         


        
5条回答
  •  面向向阳花
    2021-02-19 01:37

    If you are looking to read into a dataframe, this will also work in Julia:

    using CSV   
    
    dataset = CSV.read(download("https://mywebsite.edu/ml/machine-learning-databases/my.data"))
    

提交回复
热议问题