Skip to content

CoveragePlot() adjusting levels #694

Answered by timoast
jeffsteimle asked this question in Q&A
Discussion options

You must be logged in to vote

To adjust the levels for the cell identities, you can use the levels<- assignment function, for example:

levels(tcell)
[1] "CD4 Naive" "CD8 Naive" "CD8 TEM"
CoveragePlot(tcell, region = "CD8A")

levels(tcell) <- c("CD8 Naive", "CD8 TEM", "CD4 Naive")
CoveragePlot(tcell, region = "CD8A")

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@jeffsteimle
Comment options

Answer selected by timoast
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #693 on July 02, 2021 16:22.