Rescale x to (0, 1), except if x is constant
Discussed in PR #32: https://github.com/briatte/ggnetwork/pull/32
scale_safely(x, scale = diff(range(x)))
x
: a vector to rescalescale
: the scale on which to rescale the vectorThe rescaled vector, coerced to a vector if necessary. If the original vector was constant, all of its values are replaced by 0.5.
Kipp Johnson