Skip to content

Commit 9b6292b

Browse files
committed
removed console log
1 parent bd0e204 commit 9b6292b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

_posts/plotly_js/maps/choropleth-maps/2015-08-11-US-pop-by-state-choropleth.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010

1111
Plotly.d3.csv('https://raw.githubusercontent.com/plotly/datasets/master/2014_usa_states.csv', function(err, rows){
1212
function unpack(rows, key) {
13-
return rows.map(function(row) { return row[key]; });
13+
return rows.map(function(row) { return row[key]; });
1414
}
15-
console.log(unpack(rows, 'Postal'));
1615
var data = [{
1716
type: 'choropleth',
1817
locationmode: 'USA-states',
@@ -22,7 +21,6 @@
2221
autocolorscale: true
2322
}];
2423

25-
console.log(data.locations);
2624
var layout = {
2725
title: '2014 US Popultaion by State',
2826
geo:{

0 commit comments

Comments
 (0)