Skip to content

milanmlft/jupytextR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

00c4c55 · Jan 1, 2025

History

82 Commits
Jan 1, 2025
Jun 27, 2023
Jun 27, 2023
Apr 3, 2024
May 10, 2024
Jun 27, 2023
Dec 5, 2023
Nov 16, 2023
May 10, 2024
Jun 27, 2023
Jun 27, 2023
Jun 23, 2023
Jun 27, 2023
Jun 27, 2023
Jun 19, 2023
Jun 23, 2023
Jun 23, 2023
Jun 27, 2023

Repository files navigation

jupytextR

R-CMD-check Codecov test coverage Lifecycle: experimental

The goal of the jupytextR package is to provide an R wrapper for the jupytext Python library.

Installation

You can install the development version of jupytextR from GitHub with:

# install.packages("devtools")
devtools::install_github("milanmlft/jupytextR")

Example

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

library(jupytextR)

## Converting from Rmd to ipynb
jupytext("path/to/file.Rmd", to = "ipynb")

## Converting from ipynb to Rmd
jupytext("path/to/file.ipynb", to = "Rmd")