Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7c6379e

Browse files
committed
avoid [[ on RHS of |>
1 parent 6330ab3 commit 7c6379e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

‎vignettes/questions-and-answers.Rmd‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,13 @@ library(dplyr)
9090
library(GenomicDataCommons)
9191
9292
cases() |>
93-
GenomicDataCommons::filter(~ project.program.name=='TCGA' &
94-
files.experimental_strategy=='RNA-Seq') |>
93+
GenomicDataCommons::filter(
94+
~ project.program.name=='TCGA' & files.experimental_strategy=='RNA-Seq'
95+
) |>
9596
facet(c("files.created_datetime")) |>
9697
aggregations() |>
97-
.[[1]] |>
98+
unname() |>
99+
unlist(recursive = FALSE) |>
98100
as_tibble() |>
99101
dplyr::arrange(dplyr::desc(key))
100102
```

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /