This repository was archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
see https://github.com/ropensci/universe instead
License
Unknown, MIT licenses found
Licenses found
Unknown
LICENSE
MIT
LICENSE.md
ropensci-archive/starchart
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# starchart
<!-- badges: start -->
[](https://github.com/ropenscilabs/starchart/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/ropenscilabs/starchart)
<!-- badges: end -->
The goal of starchart is to access the R-universe API.
## Installation
You can install the development version of starchart from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pak("ropenscilabs/starchart")
```
## Examples
### All packages in an universe
```{r example}
library(starchart)
universe_ls("jeroen")
```
### Info on all packages in an universe
```{r}
universe_packages("jeroen", limit = 1) |>
str(max.level = 2)
```
### Info on a single package in an universe
```{r}
universe_package("jeroen", package = "curl") |>
str(max.level = 1)
```
### Search within a single universe
```{r}
universe_search("ropensci", query = 'needs:httr2', limit = 1) |>
str(max.level = 2)
```
### Search among all universes
```{r}
global_search(query = '"weather data"', limit = 1) |>
str(max.level = 2)
```
About
see https://github.com/ropensci/universe instead
Resources
License
Unknown, MIT licenses found
Licenses found
Unknown
LICENSE
MIT
LICENSE.md
Code of conduct
Contributing
Stars
Watchers
Forks
Releases
No releases published