Contributor Report

Binomial proportion confidence interval for how likely a user's uploads will achieve a score of at at least n with 95% confidence within the past 30 days. Most statistics are not significant unless there are at least 300 uploads.

<% @report.users.each do |user| %> <% if user.confidence_interval_for(3) > -1 %> <% end %> <% end %>
User Level Uploads Del Chance Neg Score Chance
<%= link_to_user user.user %> <%= user.level_string %> <%= link_to user.post_upload_count, posts_path(:tags => "user:#{user.name} order:random", :limit => 200) %> <%= link_to number_to_percentage(user.deletion_confidence_interval, :precision => 0), posts_path(:tags => "user:#{user.name} status:deleted", :limit => 200) %> <%= link_to number_to_percentage(user.negative_score_confidence_interval, :precision => 0), posts_path(:tags => "user:#{user.name} score:<0", :limit => 200) %>
<% content_for(:page_title) do %> Contributor Report - <%= Danbooru.config.app_name %> <% end %> <%= content_for(:html_header) do %> <% end %>