Giter Site home page Giter Site logo

pipesheet's Introduction

pipesheet

The pipesheet package is a free and open source software package in R that provides functions for editing Excel data within R. It allows users to write data to Excel, open it for editing, and then read the edited data back into R. This package is useful for quickly updating data in Excel and integrating it with R workflows.

Installation

You can install the pipesheet package from GitHub using the remotes package:

# Install remotes package if not already installed
install.packages("remotes")

# Install the pipesheet package from GitHub
remotes::install_github("catbru/pipesheet")

Usage

Once the pipesheet package is installed, you can load it into your R session using the library() function:

library(pipesheet)

The main functions provided by the pipesheet package are:

  • edit(data): Writes data to a temporary Excel file, opens it for editing in Excel, and reads the edited data back into R as a tibble.

  • view(data, row.names = FALSE): Writes data to a temporary Excel file and opens it for viewing in Excel. The row.names argument allows you to specify whether to include row names in the Excel file.

Examples

Here are some examples of how to use the pipesheet package:

# Load the pipesheet package
library(pipesheet)

# Create a sample data frame
data <- data.frame(
  ID = c(1, 2, 3),
  Name = c("John", "Alice", "Bob"),
  Age = c(25, 30, 35))

# Edit the data in Excel
edited_data <- edit(data)

# View the data in Excel
view(data)

Contributing

If you would like to contribute to the pipesheet package, please follow the guidelines in the CONTRIBUTING.md file in the GitHub repository. We welcome contributions, bug reports, and feedback to improve the package.

License

This package is free and open source software, licensed under GPL-3. Please see the LICENSE.md file for more information.

Contact

For any questions, issues, or feedback, please contact Roger Sanjaume at [email protected].

pipesheet's People

Watchers

Roger avatar

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.