Something cool I found out recently.
public AnimationCurve plot = new AnimationCurve();
void update () {
float horizontalThrow = CrossPlatformInputManager.GetAxis("Horizontal");
plot.AddKey(Time.realtimeSinceStartup, horizontalThrow);
That will output a graph during runtime. Very usefull for getting visual feedback on a variable.