@@ -141,21 +141,20 @@ to record a tree sequence in a multi-generation simulation with many individuals
141141
142142Given the current tree sequence ecosystem,
143143the aims of the ` RcppTskit ` package are to provide an easy-to-install R package
144- that supports users in four typical cases.
144+ that supports users in four typical cases of working with tree sequences
145+ and table collection.
145146The authors are open to expanding this scope of ` RcppTskit `
146147depending on user demand and engagement.
147148The four typical cases are:
148149
149- 1 . Load a tree sequence[ ^ ts_and_tc_note ] into R and summarise it,
150+ 1 . Load a tree sequence into R and summarise it,
150151
151- 2 . Pass a tree sequence[ ^ ts_and_tc_note ] between R and reticulate or standard Python,
152+ 2 . Pass a tree sequence between R and reticulate or standard Python,
152153
1531543 . Call the ` tskit ` C API from C++ in an R session or script, and
154155
1551564 . Call the ` tskit ` C API from C++ in another R package.
156157
157- [ ^ ts_and_tc_note ] : Both tree sequence and table collection types are supported.
158-
159158Examples for all of these cases are provided below
160159after we describe the implemented data and class model.
161160
@@ -213,7 +212,7 @@ if (!test) {
213212}
214213```
215214
216- ### 1) Load a tree sequence[ ^ ts_and_tc_note ] into R and summarise it
215+ ### 1) Load a tree sequence into R and summarise it
217216
218217``` {r}
219218#| label: use_case_1
@@ -239,7 +238,7 @@ ts2 <- tc$tree_sequence()
239238help(package = "RcppTskit")
240239```
241240
242- ### 2) Pass a tree sequence[ ^ ts_and_tc_note ] between R and reticulate or standard Python
241+ ### 2) Pass a tree sequence between R and reticulate or standard Python
243242
244243``` {r}
245244#| label: use_case_2
0 commit comments