Last updated: 2021-10-08
Checks: 2 0
Knit directory: misc/
This reproducible R Markdown analysis was created with workflowr (version 1.6.2). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version 78f4a0b. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish
or wflow_git_commit
). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:
Ignored files:
Ignored: .DS_Store
Ignored: .Rhistory
Ignored: .Rproj.user/
Ignored: data/.DS_Store
Untracked files:
Untracked: analysis/EM_var.md
Untracked: data/ROTS_results.RData
Untracked: data/ROTS_results2.RData
Untracked: data/cate_cate_high.RData
Untracked: data/cate_cate_low.RData
Untracked: data/cate_cate_mid.RData
Untracked: data/cate_cate_null.RData
Untracked: data/mout_low.RData
Untracked: data/mout_mid.RData
Untracked: data/mout_null.RData
Untracked: data/nonUMI_simu1.RData
Untracked: data/pbmc.rds
Untracked: data/pbmc3k_filtered_gene_bc_matrices/
Untracked: data/pbmc_counts.rds
Untracked: data/prices.csv
Untracked: data/scCD14.RData
Untracked: data/scCD4.RData
Untracked: data/scCD8.RData
Untracked: data/scMB.RData
Untracked: data/sva_sva_low.RData
Untracked: data/sva_sva_mid.RData
Untracked: data/sva_sva_null.RData
Unstaged changes:
Modified: analysis/index.Rmd
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were made to the R Markdown (analysis/gaussian_process.Rmd
) and HTML (docs/gaussian_process.html
) files. If you’ve configured a remote Git repository (see ?wflow_git_remote
), click on the hyperlinks in the table below to view the files as they were in that past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | 78f4a0b | Dongyue Xie | 2021-10-08 | wflow_publish(“analysis/gaussian_process.Rmd”) |
A spatial process \(Y(s)\) is said to follow a GP if any realization \(Y=(Y(s_1),...,Y(s_N))\) follows an \(N\) dimensional multivariate normal distribution.
The evaluation of density needs \(O(N^3)\) operations and \(O(N^2)\) memory. There are a number of approximation methods developed to solve the computational issues for example the low-rank approximations to Gaussian processes, and paralyzing the computation.
The methods were grouped into one of the following categories: (i) low rank, (ii) sparse covariance matrices, (iii) sparse precision matrices and (iv) algorithmic.
The experiment dataset has size \(N=1.5*10^5\). About \(30\%\) of the data are used as testing dataset. Main results are shown in table 2 and table 3.
FRK only uses one core but runs very fast, but with higher rmse and lower coverage. Gapfill runs the fasted by using 40 cores but with lowerest coverage. MRA and Periodic Embedding both use 1 core and give low rmse and good coverage. NNGP also works well but using 10 cores.