Skip to content

Commit

Permalink
Load data via https in example
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz authored Jul 3, 2018
1 parent d46d213 commit f7e4f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var dl = require('datalib');
// Load and parse a CSV file. Datalib does type inference for you.
// The result is an array of JavaScript objects with named values.
// Parsed dates are stored as UNIX timestamp values.
var data = dl.csv('http://vega.github.io/datalib/data/stocks.csv');
var data = dl.csv('https://vega.github.io/datalib/data/stocks.csv');

// Show summary statistics for each column of the data table.
console.log(dl.format.summary(data));
Expand Down

0 comments on commit f7e4f10

Please sign in to comment.