I have some data that I would like to go as input on a function as $x$, its values range from 1 to ~5000. I would like to have $f(x)$ output values which follow a sigmoid like distribution.
I was able to find some equations that do that. The problem is that they don't include -1 and 1 values in $f(x)$'s range. Without saying I would need its values to be in range of $[0,1]$ instead of $]-1,1[$.
How can I maybe change one of those equations in a way that $f(x)$ follows these restrictions? As this image shows I was able to put $erf(x)$'s between ]0,1[ but not [0,1].
Try using $\sigma (x)= \frac{1}{1+e^{-x+2500}}$ for $0 <x<5000$ with $\sigma (0) =0$ and $\sigma (5000) = 1$ otherwise.
The values of the logistic curve are extremely close to $0$ and $1$ at $x=0$ and $x=5000$ so it wouldn’t make a difference anyway. It’s close enough that an average calculator wouldn’t be able to notice the difference.