I have a pandas dataframe representing a table with 2 columns and 4 rows
['url1', 'url2'].forEach(function(imageUrl){
var img = new Image();
$(img).attr('src', imageUrl).attr('alt', 'thumbnail' + 1);
$(img).appendTo($('.thumbnail')).hide().fadeIn(400);
$('.thumb img').load(function(){
$('.loader').fadeOut(300);
$(this).addClass("thumbimage");
});
});
I need to draw stacked bar (matplotlib) of values and the names should be shown in legend I tried this (with no success):
Name | Value
n1 | 10.3
n2 | 5
n3 | 15
n4 | 8
How can I do it? I saw this question Pandas - Plotting a stacked Bar Chart. Not sure how to use it in my case