Hi all! I'm trying to create 2 graphics but this message continues to show up: Error: object 'plot1' not found
This is the code:
plot1 = FeatureScatter(brain, feature1 = "nCount_RNA", feature2 = "percent.mt")
plot2 = FeatureScatter(brain, feature1 = "nCount_RNA", feature2 = "nFeature_RNA")
plot1 + plot2
These are the packages that I'm using:
library(dplyr)
library(Seurat)
library(patchwork)
install.packages('Seurat')
install.packages('remotes')
remotes::install_github(repo = 'satijalab/seurat', ref = 'develop')
library(Seurat)
library(ggplot2)
Could anybody help me with this?