-
Notifications
You must be signed in to change notification settings - Fork 0
Pin colors Histogram #31
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
base: dev
Are you sure you want to change the base?
Conversation
Fix Histogram Return Value
refactor histogram by returning hist_data
Spatial annos
… True,False, together = True/False
Ahmad8864
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small changes
src/spac/visualization.py
Outdated
| group_data = plot_data[plot_data[group_by] == | ||
| groups[i]][data_column] | ||
| group = groups[i] | ||
| group_data = plot_data[plot_data[group_by] == group][data_column] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line too long, <80 chars
src/spac/visualization.py
Outdated
| hist_data = calculate_histogram(group_data, kwargs['bins']) | ||
|
|
||
|
|
||
| # Retrieve the specific color for this group if defined_color_map is provided |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line too long
Add paper directory and files
KNN Clustering
fix(select_values): added support when observation are numerical
Add comments UTAG tests
…dataset fix(summarize_dataframe): remove duplicated missing index
…ncolor feat(visualize_nearest_neighbor): add pin-color and corresponding uni…
merge updated summarize_dataframe and visualize_nearest_neighbor with pin-color from dev to release_dev
…and helpers and unit test files individually
…nearest_neighbor feat(pin_color): add pin color feature to visualize nearest neighbor …
merge dev into release_dev with updated visualize_nearest_neighbor by adding pin-color feature
…nearest_neighbor fix(visualize_nearest_neighbor): rewrite unit tests and move up libr…
merge the updated visualize_nearest_neighbor function and unit tests from dev to dev_release
step: bumping minor version from 0.8 to 0.9
step: bumping minor version from 0.8 to 0.9
Minor version bumping from v0.8.0 to v0.9.0
Added functionality for user to add selected colormapping dictionary (string) and will color the histogram based of it. Tested for group_by, together, and other various plots.