GithubHelp home page GithubHelp logo

dvc-r's Introduction

dvc

Lifecycle: experimental CRAN status R build status pkgdown

This package provides a simple wrapper around Data Version Control (DVC).

Installation

You can install the released version of dvc from CRAN with:

# install.packages("dvc") # (Not on CRAN yet)

Or install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("andrewcstewart/dvc")

Example

This is a basic example which shows you how to solve a common problem:

library(dvc)
## basic example code

# install dvc
dvc::install_dvc()

# setup dvc in your current project
dvc::use_dvc()

# tell dvc to track a file
write.csv2(x = mtcars, file = "mtcars.csv")
dvc::add(path = "mtcars.csv")

# setup remote storage
dvc::remote_add(name = "myremote", url = "s3://my-bucket/dvc-storage")
dvc::push()
dvc::pull()

Overview

Data Version Control, or DVC, is a data and ML experiment management tool that takes advantage of the existing engineering toolset that you're already familiar with (Git, CI/CD, etc.). See the official documentation for a full overview of DVC's functionality.

The purpose of this package is to aid in using DVC from within R. For example, you may want to run DVC commands from an RMarkdown file as part of an analysis. The primary focus of the package currently implements the data tracking functionality of DVC.

dvc-r's People

Contributors

andrewcstewart avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

insilica

dvc-r's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.