We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the plots have a log scale button, but this should really be a logit one, given that we are looking at proportions between 0-1.
Unfortunately this doesn't seem to be trivial with recharts as recharts doesn't have a logit scale, only log: https://recharts.org/en-US/api/YAxis#scale
logit
log
I'll open an issue there.
The text was updated successfully, but these errors were encountered:
Actually, this wouldn't be too hard with the custom function option, see https://recharts.org/en-US/api/YAxis#scale
import { scaleLog } from 'd3-scale'; const scale = scaleLog().base(Math.E); ... <YAxis scale={scale} /> ...
Sorry, something went wrong.
No branches or pull requests
Currently the plots have a log scale button, but this should really be a logit one, given that we are looking at proportions between 0-1.
Unfortunately this doesn't seem to be trivial with recharts as recharts doesn't have a
logit
scale, onlylog
: https://recharts.org/en-US/api/YAxis#scaleI'll open an issue there.
The text was updated successfully, but these errors were encountered: