score:9

Accepted answer

the stack method expects your data to be equally length-ed. each key must have the same dates. for instance, if we only look at your first 3 keys (countries) and fixed the data to this:

key,value,date
afghanistan,1129,01/01/15
afghanistan,969,02/01/15
afghanistan,885,03/01/15
afghanistan,1119,04/01/15
afghanistan,1151,05/01/15
afghanistan,2051,06/01/15
afghanistan,2104,07/01/15
afghanistan,2270,08/01/15
afghanistan,2724,09/01/15
afghanistan,3770,10/01/15
albanien,1598,01/01/15
albanien,1735,02/01/15
albanien,2955,03/01/15
albanien,4743,04/01/15
albanien,4864,05/01/15
albanien,5837,06/01/15
albanien,7547,07/01/15
albanien,8234,08/01/15
albanien,6624,09/01/15
albanien,4549,10/01/15
bosnien und herzegowina,0,01/01/15 //<-- this was missing
bosnien und herzegowina,370,02/01/15
bosnien und herzegowina,380,03/01/15
bosnien und herzegowina,472,04/01/15
bosnien und herzegowina,382,05/01/15
bosnien und herzegowina,0,06/01/15 //<-- this was missing
bosnien und herzegowina,0,07/01/15 //<-- this was missing
bosnien und herzegowina,0,08/01/15 //<-- this was missing
bosnien und herzegowina,0,09/01/15 //<-- this was missing
bosnien und herzegowina,0,10/01/15 //<-- this was missing

then the graph draws as expected.


Related Query

More Query from same tag