a b/man/featureScoreVisualization.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/scAI_plotting.R
3
\name{featureScoreVisualization}
4
\alias{featureScoreVisualization}
5
\title{visualize cells on the 2D space with features overlayed}
6
\usage{
7
featureScoreVisualization(object, feature.use = NULL, feature.scores,
8
  method = "VscAI", colormap = "RdPu", color.direction = 1,
9
  nCol = NULL, xlabel = "VscAI1", ylabel = "VscAI2", show.axes = T,
10
  cell.size = 0.3, show.legend = T, show.legend.combined = F)
11
}
12
\arguments{
13
\item{object}{scAI object}
14
15
\item{feature.use}{a vector of features}
16
17
\item{feature.scores}{a matrix containing the feature scores}
18
19
\item{method}{dimensional reduction method, e.g., VscAI, tsne, umap}
20
21
\item{colormap}{RColorbrewer palette to use}
22
23
\item{color.direction}{Sets the order of colours in the scale. If 1, the default, colours are as output by RColorBrewer::brewer.pal(). If -1, the order of colours is reversed.}
24
25
\item{nCol}{number of columns of the plot}
26
27
\item{xlabel}{label shown on x-axis}
28
29
\item{ylabel}{label shown on y-axis}
30
31
\item{show.axes}{whether show the axes}
32
33
\item{cell.size}{the size of points (cells)}
34
35
\item{show.legend}{whether show individual legend}
36
37
\item{show.legend.combined}{whether just show one legend}
38
}
39
\description{
40
visualize cells on the 2D space with features overlayed
41
}