Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ixpantia/ixplorer
Friendly DataOps with RStudio
https://github.com/ixpantia/ixplorer
dataops gitea hacktoberfest
Last synced: 3 months ago
JSON representation
Friendly DataOps with RStudio
- Host: GitHub
- URL: https://github.com/ixpantia/ixplorer
- Owner: ixpantia
- License: other
- Created: 2019-02-06T22:32:10.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T14:17:07.000Z (10 months ago)
- Last Synced: 2024-08-07T01:48:02.233Z (3 months ago)
- Topics: dataops, gitea, hacktoberfest
- Language: R
- Homepage: https://ixpantia.github.io/ixplorer/
- Size: 1.85 MB
- Stars: 2
- Watchers: 2
- Forks: 10
- Open Issues: 20
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - ixpantia/ixplorer - Friendly DataOps with RStudio (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer)
### Español
# Descripción
El paquete ixplorer trae la funcionalidad de ixplorer mas cerca tuyo. Tiene el
propósito de permitir trabajar más agilmente con su equipo de datos desde RStudio
y más importante aún, hacerlo sin detener su flujo de trabajo.
Esto se logra con ventanas interactivas de dentro de RStudio, funciones para
extraer información útil del día a día en ixplorer y funciones para
facilitar también el trabajo con control de versiones con git.### Instalación
Hay dos maneras de realizar este paso. Podemos instalar la versión del CRAN con
```
install.packages("ixplorer")
```O podemos instalar la versión en desarrollo desde GitHub. Para este paso,
primero necesitas installar el paquete devtools (o remotes). Si no lo has hecho
aún, puedes instalarlo con:```
install.packages("devtools")
```Ahora puedes instalar ixplorer de GitHub con:
```r
devtools::install_github("ixpantia/ixplorer")
```### English
## Overview
The ixplorer package brings the functionality of ixplorer closer to you. It is
intended to allow you to work quicker with your data team from within RStudio
and more importantly, to do it without having to stop your workflow.
This is achieved with interactive gadgets from within RStudio, functions to
extract useful day-to-day information from ixplorer, and functions to make it
easier to work with git version control as well.### Installation
There are two ways to install the package. We can install the CRAN version with:
```
install.packages("ixplorer")
```Or, we can install the development version from GitHub. For this step, first
you will need to install the `devtool` package on your computer. You can do it
with:```r
install.packages("devtools")
```You can now install ixplorer from GitHub with:
```r
devtools::install_github("ixpantia/ixplorer")
```