Reading data from URL

前端 未结 5 1680
生来不讨喜
生来不讨喜 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:23

    If it is directly a csv file, something like this should work:

    A = readdlm(download(url),';')
    

提交回复
热议问题