Learn R Programming

Using IDX files with R

Introduction

This package provides functions to convert files to and from IDX format to arrays in R. IDX is a format to store vector and arrays in binary format.

Reading IDX format is needed for instance to use the MNIST database of handwritten digits provided by Yann LeCun.

Usage

This basic example downloads, uncompresses and reads the IDX file from the train set of the MNIST data.

library(idx2r)
library(R.utils)
URL = "http://yann.lecun.com/exdb/mnist/"
file_name = "train-images-idx3-ubyte.gz"
download.file(paste0(URL, file_name), "train-images-idx3-ubyte.gz")
gunzip(file_name)
train = read_idx(gsub(pattern = "\\.gz", "", file_name))
dim(train)

Installation

The package can be installed from GitHub with the following command:

$ R -e "devtools::install_github('edoffagne/idx2r')"

Copy Link

Version

Install

install.packages('idx2r')

Monthly Downloads

175

Version

1.0.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Erik Doffagne

Last Published

February 20th, 2018

Functions in idx2r (1.0.0)

idx2r-package

Convert Files to and from IDX Format to Vectors, Matrices and Arrays in R
write_idx

Write an array into an IDX file
read_idx

Read an IDX file