-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Round up for customizing exports #445
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Group matches using original blob coordinates for easier comparison - Show scaled coordinates and distances separately with corresponding indices - Add type hints
Exporting region IDs has output both a CSV and Excel files. Make the Excel file output optional to avoid an error when the export package is not available since this package is optional.
Add `--plot_labels rotation=<deg>` CLI argument to set the amount of rotation. Apply this rotation to swarm and bar plot tasks.
- Support RGB set on the CLI when exporting a stack of images - Refactor plane processing to use the rescale/resize wrapper - Add multichannel support to this wrapper
Files loaded directly as TIFs require the extension during loading, but the output file should not retain this extension.
Follow the same error formatting when Seaborn is missing in category plotting as for swarm plots.
…able Add an `Intercept` environment field to configure whether to include the intercept term in linear regressions.
- Transfer all columns from the stat coefficients output table rather than hard-coding column names - Clean up unused variable initializations and for-loop sequence
- Extract additional linear regression values - Store extra columns in results data frame to output stats table
- Add parameters to customize the legend title and pass arguments to the underlying Seaborn swarm plot, similar to the category plot wrapper - Use the data frame passed to `main` if given
Add a parameter to `main` to specify whether to save the plot.
Also, update CLI docs for `--plot_labels`.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Various fixes and small enhancements for data export:
openpyxl
package is now optional for region CSV file export--plot_labels rotation=<deg>
sub-argument to specify label rotation for 2D plots, supported in swarm and bar plot x-labelsconfig.env$Intercept <- FALSE
settingr<sup>2</sup>
and intercepts in linear regressions