LoginSignup
1
1

More than 5 years have passed since last update.

Juliaでリンク共有されているGoogleスプレッドシートをCSVエクスポートを経由してDataFrameで読み込む

Last updated at Posted at 2018-12-02

Julia 1.0.2で確認

using Pkg
Pkg.add(["CSV", "DataFrames","GoogleSheetsCSVExporter"])
using GoogleSheetsCSVExporter, CSV, DataFrames

url = "https://docs.google.com/spreadsheets/d/1klF3cdwF91KtEV8MGgplkqpDGRDpKoD9zIerPJDGovA/edit#gid=0"
@show GoogleSheetsCSVExporter.fromURI(url) |> CSV.File |> DataFrame

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1