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
Hello,
I am making a parallel categories plot with:
fig = px.parallel_categories( pivoted, dimensions=sorted_treatments, color="meth_numeric", color_continuous_scale=[ (0.0, "blue"), (0.5, "orange"), (1.0, "red"), ], range_color=[0, 2], ) fig.update_layout( title=f"Methylation state transitions in {genome.readable_name} across conditions", coloraxis_showscale=False ) out_file = output_dir / f"{genome.readable_name}_{motif.motif}_parallel_categories.html" fig.write_html(str(out_file))
I get the following plot:
How can I remove the duplicate labels of the categories (on what would be the Y axis of the image)?
The text was updated successfully, but these errors were encountered:
Also I was wondering if I can set the ordering of the elements on the Y axis programatically.
Sorry, something went wrong.
No branches or pull requests
Hello,
I am making a parallel categories plot with:
I get the following plot:
How can I remove the duplicate labels of the categories (on what would be the Y axis of the image)?
The text was updated successfully, but these errors were encountered: