anychart.onDocumentReady(function() {
anychart.data.loadCsvFile("https://raw.githubusercontent.com/WaydeHerman/ScatterPlot/master/data.csv", function (data) {
chart = anychart.scatter();
var series1 = chart.bubble(data);
chart.minBubbleSize("2%");
chart.maxBubbleSize("10%");
var series2 = chart.line(data2);
chart.title("% of Cats v Dogs per state");
chart.xAxis().title("% Cats");
chart.yAxis().title("% Dogs");
chart.xGrid().stroke({color: "#212D40", thickness: 0.3});
chart.yGrid().stroke({color: "#212D40", thickness: 0.3});
chart.xMinorGrid().stroke({color: "#212D40", thickness: 0.15, dash: 5});
chart.yMinorGrid().stroke({color: "#212D40", thickness: 0.15, dash: 5});
chart.container("container").draw();