Since it's your first time here, let us show you how Trendy works.

Close-button

Answer Status after 7 Days (normalized)

  • Created by: Ned Gulley
  • Latest result: Plot created
  • Created on: 27 Mar 2012
  • Liked: 1 time

Plot Image
% Unanswered
t1 = time1527(~isnan(data1527));
d1 = data1527(~isnan(data1527));

% Answered/Not Accepted
t2 = time1528(~isnan(data1528));
d2 = data1528(~isnan(data1528));

% Answered/Accepted
t3 = time1529(~isnan(data1529));
d3 = data1529(~isnan(data1529));

tn = unique([t1; t2; t3]);
tn(tn < max([t1(1) t2(1) t3(1)])) = [];
tn(tn > min([t1(end) t2(end) t3(end)])) = [];
d1n = interp1(t1,d1,tn);
d2n = interp1(t2,d2,tn);
d3n = interp1(t3,d3,tn);

dall = d1n + d2n + d3n;

area(tn,100*[d3n d2n d1n]./[dall dall dall], ...
  'EdgeColor',[215 215 215]/255);

datetick
legend({'Answered/Accepted','Answers/Not Accepted','Unanswered'},'Location','NorthOutside')
colormap([178 171 115; 235 200 121; 201 118 92]/255)
box on
ylim([-5 105])
Tags:

2 comments

Jan Simon 12 months ago

I see 3 colors in the legend, but only grey edges in the diagram. I assume the Y-axis contains percent values.
I think the diagram means, that on 22-May-2012 15% of the questions asked on 15-May-2012 got an accepted answer. If so, there is a large potential to make the Answers forum more efficient.

Ned Gulley 12 months ago

Thanks for the note. Some NaNs in the data caused the colors to get bleached out of the plot. Should be fixed now. Yes, there is plenty of room to make Answers more efficient. On the plus side, more than 70% of questions are getting answered.