Reading data from URL

前端 未结 5 1305
情深已故
情深已故 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:36

    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"))
    

提交回复
热议问题