From ee7d71c1550dd4f4cb6c19d6de1e981b8554bc00 Mon Sep 17 00:00:00 2001 From: Jayaram Kancherla Date: Mon, 10 Jun 2024 18:52:49 -0700 Subject: [PATCH] minor edit to tutorial --- docs/tutorial.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index c91eb5c..4580770 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -212,10 +212,8 @@ And we can get individual rows as a dictionary: bframe.get_row(2) ``` -::: {.callout} To retrieve a subset of the data in the `BiocFrame`, we use the subset (`[]`) operator. This operator accepts different subsetting arguments, such as a boolean vector, a `slice` object, a sequence of indices, or row/column names. -::: ```{code-cell}