File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,10 @@ sccomp_result =
157
157
.count = count,
158
158
cores = 1, verbose = FALSE
159
159
) |>
160
- sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
160
+
161
+ # max_sampling_iterations is used her to not exceed the maximum file size for GitHub action of 100Mb
162
+ sccomp_remove_outliers(cores = 1, verbose = FALSE, max_sampling_iterations = 2000) |> # Optional
163
+
161
164
sccomp_test()
162
165
```
163
166
@@ -219,7 +222,6 @@ sccomp_result =
219
222
.count = proportion,
220
223
cores = 1, verbose = FALSE
221
224
) |>
222
- sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
223
225
sccomp_test()
224
226
```
225
227
Original file line number Diff line number Diff line change @@ -206,7 +206,9 @@ sccomp_result =
206
206
.count = count,
207
207
cores = 1, verbose = FALSE
208
208
) |>
209
- sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
209
+
210
+ # max_sampling_iterations is used her to not exceed the maximum file size for GitHub action of 100Mb
211
+ sccomp_remove_outliers(cores = 1, verbose = FALSE, max_sampling_iterations = 2000) |> # Optional
210
212
sccomp_test()
211
213
```
212
214
@@ -268,7 +270,6 @@ sccomp_result =
268
270
.count = proportion,
269
271
cores = 1, verbose = FALSE
270
272
) |>
271
- sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
272
273
sccomp_test()
273
274
```
274
275
You can’t perform that action at this time.
0 commit comments