diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index ebffe9985..ffadc275e 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -3,10 +3,6 @@ class ReportsController < ApplicationController before_filter :gold_only, :only => [:similar_users] before_filter :moderator_only, :only => [:post_versions, :post_versions_create] - def contributors - @report = Reports::Contributors.new - end - def uploads @report = Reports::Uploads.new(params[:min_date], params[:max_date], params[:queries]) end diff --git a/app/views/reports/contributors.html.erb b/app/views/reports/contributors.html.erb deleted file mode 100644 index e1e777227..000000000 --- a/app/views/reports/contributors.html.erb +++ /dev/null @@ -1,47 +0,0 @@ -
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.
- -| 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) %> | -