Added option for smoothing and reversing axis. #40
Open
mychan24 wants to merge 36 commits intorlbarter:masterfrom
Open
Added option for smoothing and reversing axis. #40mychan24 wants to merge 36 commits intorlbarter:masterfrom
mychan24 wants to merge 36 commits intorlbarter:masterfrom
Conversation
added mean as an option for heat.smooth
Allow x or y axis and labels to be reversed (e.g., 0,0 being on top left corner by using (x.axis.reverse=F, y.axis.reverse=T)
Reverse axis
add parameter and edited superheat.R to allow label color to remain unsorted based on label.col.sort=T
Sort label color, option to disable
This reverts commit 907355b.
This reverts commit afbc955.
update sort label color to only occur when label is "variable"
change github url
* Delete extra reverse axis for gg.heat
|
|
This file contains hidden or 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
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.
Added an option (smooth.heat.type) to switch between using mean or median to smooth the cells when using smooth.heat.
Added (x.axis.reverse) and (y.axis.reverse) to allow user to flip the heatmap and label's orientation. For example, x.axis.reverse=F, y.axis.reverse=T will display matrix with origin (0,0) on the top left corner, with ascending number going downward on the y-axis. Have not tested with yr/yt options yet.
Label color (left.label.col, bottom.label.col) was getting sorted by the row-order when it is meant for the membership/cluster. Added if statement to only sort label color when label is for "variable".