MTurk Worst Case Scenario Calculator + Gauge

Shows what your approval rate would be in worst case scenario

  1. // ==UserScript==
  2. // @name MTurk Worst Case Scenario Calculator + Gauge
  3. // @namespace localhost
  4. // @author ThirdClassInternationalMasterTurker, DeliriumTremens
  5. // @description Shows what your approval rate would be in worst case scenario
  6. // @include https://www.mturk.com/mturk/dashboard
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js
  8. // @require http://cdn.jsdelivr.net/jqplot/1.0.8/jquery.jqplot.js
  9. // @require http://cdn.jsdelivr.net/jqplot/1.0.8/plugins/jqplot.meterGaugeRenderer.js
  10. // @resource http://cdn.jsdelivr.net/jqplot/1.0.8/jquery.jqplot.css
  11. // @version 3.1dt
  12. // @grant none
  13. // ==/UserScript==
  14. //
  15. // 2012-09-07 First public release by ThirdClassInternationalMasterTurker
  16. //
  17. // 2012-09-09 Added approximate number of rejects that drop you to the
  18. // edge of RATE_GOOD and RATE_OK
  19. //
  20. // 2012-10-06 Added GUI for setting RATE_GOOD and RATE_OK
  21. // (Click 'Pending (Worst Case Scenario)')
  22. //
  23. // 2012-12-02 3.1: Added @downloadURL and @updateURL
  24. //
  25. // --- SETTINGS ------------------------------------------------------- //
  26. var RATE_GOOD = (localStorage['WCS_GOOD']) ? localStorage['WCS_GOOD'] : 99.0;
  27. var RATE_OK = (localStorage['WCS_OK']) ? localStorage['WCS_OK'] : 95.0;
  28. var COLOUR_GOOD = 'lightgreen';
  29. var COLOUR_OK = 'orange';
  30. var COLOUR_BAD = 'red';
  31. // -------------------------------------------------------------------- //
  32. var rows = document.evaluate('//tr[@class]',
  33. document,
  34. null,
  35. XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
  36. var submitted;
  37. var returned;
  38. var abandoned;
  39. var approved;
  40. var rejected;
  41. var pending;
  42. function config_func()
  43. {
  44. return function()
  45. {
  46. var t = prompt('MTurk Worst Case Scenario\nSet your RATE_GOOD and RATE_OK.\nFor example: 99.0;95.0',
  47. '' + RATE_GOOD + ';' + RATE_OK);
  48. if (!t)
  49. return;
  50. var rates = t.split(';', 2);
  51. rates[0] = parseFloat(rates[0]).toFixed(1);
  52. rates[1] = parseFloat(rates[1]).toFixed(1);
  53. if (rates[0] > 0 && rates[0] <= 100)
  54. localStorage['WCS_GOOD'] = rates[0];
  55. if (rates[1] > 0 && rates[1] <= 100)
  56. localStorage['WCS_OK'] = rates[1];
  57. };
  58. }
  59. for (var i=0;i<rows.snapshotLength;i++) {
  60. var row = rows.snapshotItem(i);
  61. if (row.cells.length != 3)
  62. continue;
  63. if (row.className.match('odd|even') == null) {
  64. continue;
  65. }
  66. if (row.cells[0].textContent.match('HITs Submitted')) {
  67. submitted = parseInt(row.cells[1].textContent);
  68. }
  69. if (row.cells[0].textContent.match('\\.\\.\\. Approved')) {
  70. approved = parseInt(row.cells[1].textContent);
  71. approved_p = parseFloat(row.cells[2].textContent);
  72. if (approved_p >= RATE_GOOD) {
  73. row.cells[2].style.backgroundColor = COLOUR_GOOD;
  74. }
  75. else if (approved_p >= RATE_OK) {
  76. row.cells[2].style.backgroundColor = COLOUR_OK;
  77. }
  78. else {
  79. row.cells[2].style.backgroundColor = COLOUR_BAD;
  80. }
  81. }
  82. if (row.cells[0].textContent.match('\\.\\.\\. Rejected')) {
  83. rejected = parseInt(row.cells[1].textContent);
  84. }
  85. if (row.cells[0].textContent.match('\\.\\.\\. Pending')) {
  86. pending = parseInt(row.cells[1].textContent);
  87. row.cells[0].innerHTML += " <small>(Worst Case Scenario)</small>";
  88. if (RATE_GOOD < approved_p) {
  89. var p = 1.0 - RATE_GOOD/100;
  90. var x = (rejected-(p*submitted))/(p-1);
  91. row.cells[0].innerHTML += "<br>&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"color:" + COLOUR_OK + "\">(~" + Math.round(x) + " rejects => " + RATE_GOOD + "%)</span>";
  92. }
  93. if (RATE_OK < approved_p) {
  94. var p = 1.0 - RATE_OK/100;
  95. var x = (rejected-(p*submitted))/(p-1);
  96. row.cells[0].innerHTML += "<br>&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"color:" + COLOUR_BAD + "\">(~" + Math.round(x) + " rejects => " + RATE_OK + "%)</span>";
  97. }
  98. WCS = Math.round((approved/(approved+rejected+pending) * 1000))/10;
  99. row.cells[2].innerHTML = '(' + WCS + '%)';
  100. if (WCS >= RATE_GOOD) {
  101. row.cells[2].style.backgroundColor = COLOUR_GOOD;
  102. }
  103. else if (WCS >= RATE_OK) {
  104. row.cells[2].style.backgroundColor = COLOUR_OK;
  105. }
  106. else {
  107. row.cells[2].style.backgroundColor = COLOUR_BAD;
  108. }
  109. row.cells[0].addEventListener("click", config_func(), false);
  110. row.cells[2].addEventListener("click", config_func(), false);
  111. }
  112. }
  113. $(document).ready(function(){
  114. s1 = [WCS];
  115. $(".container-content:eq(2)").append('<div id="pendingMeter" style="height:200px;width:350px;margin: 0 auto"></div>');
  116. plot3 = $.jqplot('pendingMeter',[s1],{
  117. animate: !$.jqplot.use_excanvas,
  118. grid: {
  119. background: "transparent"
  120. },
  121. seriesDefaults: {
  122. renderer: $.jqplot.MeterGaugeRenderer,
  123. rendererOptions: {
  124. label: 'Worst Case Gauge',
  125. labelPosition: 'bottom',
  126. labelHeightAdjust: -5,
  127. min: 90,
  128. max: 100,
  129. ticks: [90,91,92,93,94,95,96,97,98,99,100],
  130. intervals:[95, 98, 99, 100],
  131. intervalColors:['#990000','#FF6600','#FFFF33', '#66CC00']
  132. }
  133. }
  134. });
  135. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址