Thanks,
It is very helpful, I will try it. There exists differences between/within clusters. In some clusters, cells are mainly from one timepoints and some clusters comprise almost equal percentage of cells from four timepoints. I just wonder why I didn`t get significantly separated clusters as the manual as well as papers. Below is related codes:
pbmc <- FindNeighbors(pbmc, dims = 1:15)
pbmc <- FindClusters(pbmc, resolution = 0.5)
pbmc <- RunUMAP(pbmc, dims = 1:15)
DimPlot(pbmc, reduction = "umap", label=T)
Before I run these codes, I filter out the cells with low sequencing depth, low percentage of detected genes and high percentage of reads mapped to MT genes.
Additionally:
Since I plot to determine the ‘dimensionality’ of the dataset by using “JackStrawPlot” which is prior to the usage of function “FindNeighbors” according to the manual, The setting of “FindNeighbors” doesn’t affect the results of “JackStrawPlot”. I find that all of the PCs are highly significant in my “JackStrawPlot”. How is this possible?
Many thanks.


