I have a data matrix I extracted from seurat and I want to plot the tSNE plot by using ggplot. I don't know how to label the clusters on the plot with 0..15. Help is appreciated.
Why do you want to plot the t-SNE outside from seurat? As far as I know seurat uses ggplot2 package, meaning that you can add layers to the plot in the same way you do in ggplot2.
Therefore my question is: what do you expect to plot in ggplot2 that the seurat can't do (since it uses ggplot2)?
With this I don't mean that there is not advantages of using ggplot2 instead of using it with the seurat functions interface, but I'm just curious...
Hi, I just came across this thread and wanted to comment on it. Seurat is really nice and easy to use but it can get slow when you plot big datasets. This can be an issue if you want to publish the data in an interactive platform like Shiny. That's why some people, or at least for me, only extract the info needed for plotting from Seurat object and use ggplot to speed up calculation.
You have to show sample input data. Also, please show what you have already tried.
Why do you want to plot the t-SNE outside from
seurat
? As far as I knowseurat
usesggplot2
package, meaning that you can add layers to the plot in the same way you do inggplot2
.Therefore my question is: what do you expect to plot in
ggplot2
that theseurat
can't do (since it usesggplot2
)?With this I don't mean that there is not advantages of using
ggplot2
instead of using it with theseurat
functions interface, but I'm just curious...Agreed. If you just want more viz options and some convenience, you could also consider dittoSeq.
Hi, I just came across this thread and wanted to comment on it. Seurat is really nice and easy to use but it can get slow when you plot big datasets. This can be an issue if you want to publish the data in an interactive platform like Shiny. That's why some people, or at least for me, only extract the info needed for plotting from Seurat object and use ggplot to speed up calculation.