Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muschellij2/zarrr
R package to read Zarr files, wrapping python Zarr module
https://github.com/muschellij2/zarrr
Last synced: about 1 month ago
JSON representation
R package to read Zarr files, wrapping python Zarr module
- Host: GitHub
- URL: https://github.com/muschellij2/zarrr
- Owner: muschellij2
- License: gpl-3.0
- Created: 2023-10-29T17:35:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-01T15:43:29.000Z (about 1 year ago)
- Last Synced: 2024-10-16T08:22:05.734Z (3 months ago)
- Language: R
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# zarrr
The goal of zarrr is to read and write `zarr` files by wrapping the `zarr` Python module.
## Installation
You can install the development version of zarrr from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("muschellij2/zarrr")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(zarrr)
## basic example code
```