I notice that after the first few most recent of her comments, which have not yet received any votes either way, almost all the rest of the first page of her comments have received exactly one downvote, but varying numbers of upvotes. I suspect the downvotes are all due to one person, who has decided to object to whatever she posts. Perhaps the same person who has been downvoting everything that ialdabaoth posts.
In addition to whatever other voting is going on, my guess is that there is either one person doing this with multiple accounts, or several who have been going down the line and down voting the majority of my comments.
During the day that I was watching the patterns frequently, my karma would stay relatively stable with slow fluctuations most of the time, and the maybe around 5 times would quickly drop 10-20 or so points. I haven’t been writing much lately and am pretty sure I was at 0 for monthly karma before this post, so my current score reflects specifically these ups and downs. For anyone who wants to do math, he post was on main for about half a day before it was moved, and I believe it was at −2 when it was transferred. (up from hovering around −4 most of the day)
Speaking of the math, would you mind giving the formula you used to calculate the range of +/-’s?
Speaking of the math, would you mind giving the formula you used to calculate the range of +/-’s?
Here’s the MATLAB code I wrote, although for looking at your recent posts, the numbers were small enough that it wasn’t necessary to run this, e.g. +1 and 67% has to be +2-1.
For those who know programming but not MATLAB, the code should mostly be clear. The line “a = (ceil(a2):floor(a1))’;” sets a to a column vector of every integer between the two bounds, and all subsequent lines are operations on entire vectors at once. “[b,a,a+b]” is a matrix of three columns: b, a, and a+b.
function v = lwvotes( net, frac )
%v = lwvotes( net, frac )
% Calculate votes for and against, given upvotes as both
% net difference and fraction positive. frac can be expressed
% as a proportion or a percentage.
if frac > 1
frac = frac/100;
end
neg = net < 0;
if neg
net = -net;
frac = 1-frac;
end
frac1 = frac-0.005;
frac2 = frac+0.005;
a1 = net/(2-1/frac1);
a2 = net/(2-1/frac2);
a = (ceil(a2):floor(a1))';
b = a-net;
if neg
v = [b,a,a+b];
else
v = [a,b,a+b];
end
end
I just re-read this and realized the important information I completely glossed over, and that this totally changes my analysis.
That said, I recall thinking that the comments had gone up and down many times when showing 50%, and that perhaps either it was a case that numbers were just more even since they were smaller, or that the calculation was done differently with the comments than the post. I don’t feel up for doing the math to check this with so many comments, but if I had infinite time and energy it would be interesting.
I notice that after the first few most recent of her comments, which have not yet received any votes either way, almost all the rest of the first page of her comments have received exactly one downvote, but varying numbers of upvotes. I suspect the downvotes are all due to one person, who has decided to object to whatever she posts. Perhaps the same person who has been downvoting everything that ialdabaoth posts.
In addition to whatever other voting is going on, my guess is that there is either one person doing this with multiple accounts, or several who have been going down the line and down voting the majority of my comments.
During the day that I was watching the patterns frequently, my karma would stay relatively stable with slow fluctuations most of the time, and the maybe around 5 times would quickly drop 10-20 or so points. I haven’t been writing much lately and am pretty sure I was at 0 for monthly karma before this post, so my current score reflects specifically these ups and downs. For anyone who wants to do math, he post was on main for about half a day before it was moved, and I believe it was at −2 when it was transferred. (up from hovering around −4 most of the day)
Speaking of the math, would you mind giving the formula you used to calculate the range of +/-’s?
Here’s the MATLAB code I wrote, although for looking at your recent posts, the numbers were small enough that it wasn’t necessary to run this, e.g. +1 and 67% has to be +2-1.
For those who know programming but not MATLAB, the code should mostly be clear. The line “a = (ceil(a2):floor(a1))’;” sets a to a column vector of every integer between the two bounds, and all subsequent lines are operations on entire vectors at once. “[b,a,a+b]” is a matrix of three columns: b, a, and a+b.
I just re-read this and realized the important information I completely glossed over, and that this totally changes my analysis.
That said, I recall thinking that the comments had gone up and down many times when showing 50%, and that perhaps either it was a case that numbers were just more even since they were smaller, or that the calculation was done differently with the comments than the post. I don’t feel up for doing the math to check this with so many comments, but if I had infinite time and energy it would be interesting.