Skip to content

Commit

Permalink
Remove the blog section
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrerebeau committed Sep 4, 2024
1 parent 660ea38 commit 739ffce
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 182 deletions.
1 change: 0 additions & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ website:
href: https://packages.tesselle.org
- use.qmd
- learn/index.qmd
- posts/index.qmd
- text: "Community"
menu:
- contributing.qmd
Expand Down
49 changes: 0 additions & 49 deletions posts/2021-universe/index.qmd

This file was deleted.

Binary file removed posts/2021-universe/runiverse.png
Binary file not shown.
28 changes: 0 additions & 28 deletions posts/2022-archeometrie/index.qmd

This file was deleted.

28 changes: 0 additions & 28 deletions posts/2023-digit-hum/index.qmd

This file was deleted.

13 changes: 0 additions & 13 deletions posts/2023-digit-hum/references.bib

This file was deleted.

19 changes: 0 additions & 19 deletions posts/2024-sig-ssla/index.qmd

This file was deleted.

24 changes: 0 additions & 24 deletions posts/_metadata.yml

This file was deleted.

20 changes: 0 additions & 20 deletions posts/index.qmd

This file was deleted.

16 changes: 16 additions & 0 deletions use.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ library("tesselle")

These core packages can be used to explore and analyze common data types in archaeology: count data ([`tabula`](https://packages.tesselle.org/tabula/)), compositional data ([`nexus`](https://packages.tesselle.org/nexus/)) and chronological data ([`kairos`](https://packages.tesselle.org/nexus/)).

Thanks to the [R-universe](https://ropensci.org/r-universe/) project powered by [rOpenSci](https://ropensci.org), **tesselle** has its own <abbr title="Comprehensive R Archive Network">CRAN</abbr>-like repository: [**tesselle.r-universe.dev**](https://tesselle.r-universe.dev). This repository allows to install all versions and non-<abbr title="Comprehensive R Archive Network">CRAN</abbr> packages (e.g. <abbr title="work-in-progress">WIP</abbr> packages and large data packages). If you want to download and install a package from it, simply use `install.packages()` and specify the repository URL:

``` r
## Install a package from the 'tesselle' universe
install.packages("tabula", repos = "https://tesselle.r-universe.dev")
```

``` r
## Enable the repository globally
options(repos = c(tesselle = "https://tesselle.r-universe.dev",
CRAN = "https://cloud.r-project.org"))

## Install some packages
install.packages(c("tabula", "kairos"))
```

## How to cite

If you use the **tesselle** packages in your publications, you must report and cite them properly (as with any other research software) to ensure transparency and reproducibility of your results. By doing so, published results are linked to a particular version of the software, ensuring traceability in case an error is discovered later.
Expand Down

0 comments on commit 739ffce

Please sign in to comment.