Skip to content

Commit 7183de6

Browse files
authored
Update README.md
1 parent e0e5728 commit 7183de6

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,18 @@ data_sc <- data[[1]]
3131
data_bulk <- data[[2]]
3232
data_true <- data[[3]]
3333
34-
parameter <- c(10,1e-5,1e-4)
35-
nIter <- 20
34+
parameter <- c(1,1e-6,1e-4)
3635
3736
result <- scrabble(data1,
38-
parameter = parameter,
39-
nIter = 30,
40-
error_out_threshold = 1e-7,
41-
nIter_inner = 100,
42-
error_inner_threshold = 1e-5)
37+
parameter = parameter)
4338
```
4439
## MATLAB Version
4540

4641
### Quick start
4742
#### Load the data
4843
There are three datasets in the .mat file. There are the true data set, Drop-out data set, and the imputed data set by SCRABBLE.
4944
```
50-
load('demo_data_HF.mat')
45+
load('demo_data.mat')
5146
```
5247
#### Prepare the data
5348
We construct the data structure which is taken as one of the input of SCRABBLE.
@@ -59,12 +54,11 @@ data.data_bulk = data_bulk;
5954
#### Prepare the parameter for SCRABBLE
6055
Set up the parameters used in example
6156
```
62-
parameter = [10,1e-5,1e-4];
63-
nIter = 100;
57+
parameter = [1,1e-6,1e-4];
6458
```
6559
#### Run SCRABBLE
6660
```
67-
dataRecovered = scrabble(data,parameter,nIter);
61+
dataRecovered = scrabble(data,parameter);
6862
```
6963
#### Visualize the results
7064
```

0 commit comments

Comments
 (0)