Created
March 9, 2009 18:50
-
-
Save ambethia/76413 to your computer and use it in GitHub Desktop.
Trying to make myself feel better about how many times I've killed Anzu now.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "rubygems" | |
require "gruff" | |
graph = Gruff::Line.new | |
graph.title = "Drop the damn mount already..." | |
graph.data("%", (1..800).map { |y| (1 - (0.99 ** y)) * 100 }) | |
graph.labels = {0 => "1", 50 => "50", 100 => "100", 250 => "250", 500 => "500", 750 => "750+"} | |
graph.hide_legend = true | |
graph.x_axis_label = "Number of attempts" | |
graph.y_axis_label = "% chance it should have dropped by now" | |
graph.write("mount.png") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment