Skip to content

Commit

Permalink
rm seed param and hardcode, and regenerate for real
Browse files Browse the repository at this point in the history
  • Loading branch information
sjspielman committed Nov 15, 2024
1 parent cddab18 commit 3953290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions analyses/hello-clusters/01_perform-evaluate-clustering.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
title: "Performing graph-based clustering with rOpenScPCA"
date: "`r Sys.Date()`"
author: "Data Lab"
params:
seed: 2024
output:
html_notebook:
toc: yes
Expand Down Expand Up @@ -48,7 +46,7 @@ suppressPackageStartupMessages({
Because clustering involves random sampling, it is important to set the random seed at the top of your analysis script or notebook to ensure reproducibilty.

```{r set seed}
set.seed(params$seed)
set.seed(2024)
```

### Paths
Expand Down
Loading

0 comments on commit 3953290

Please sign in to comment.