npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

csvtransformers

v1.0.5

Published

a small javascript library for easy csv transformation

Downloads

6

Readme

csvtransformers-high-resolution-logo-color-on-transparent-background

Written in

TypeScript

Powered by

The easiest way to transform large csv files in js and ts.

BETA (1.0.0)

csvTransformer is a collection of functions designed to simplify large csv file manipulation in javascript and typescript. Functions are designed to be narrow in scope but extremely easy to use. This library compliments existing csv libraries that struggle with memory constraints of large data manipulation.

Need something custom? Check out .custom()! You can create your own python script using pandas, dask, or any other python library you install.

As this project is still in beta, it is highly recommended to make a copy of any file you plan to use with this library.

UPDATES

1.0.0 is live 🥳

TO-DO:

  1. refactor arguments to fit in options obj {} to better handle optional args

Usage

  1. Install and import csvtransformers
npm i csvtransformers
import {csvtransformer} from 'csvtransformers'

or

const {csvTransformer} = require('csvtransformers')
  1. Install python (python.org)

  2. Install python libraries with python package installer (pip3 as of 03/23). Sample installation shown below.

  • numpy
  • pandas
  • dask
  • datetime
  • glob
pip3 install numpy
pip3 install pandas
pip3 install dask
pip3 install datetime
pip3 install glob

Note: Library built on nodeJS 16.17.1 and Python 3.11.2

Documentation

.aggregatorBool()

Creates an aggregation of boolean values for a given id and outputs the tally to newCol1 and newCol2. Useful for aggregating yes/no, liked/not etc ratings.

.aggregatorBool(inputFile, outputFile, idCol, targetCol, newCol1, newCol2)
  • inputFile: string, required
  • outputFile defaults to 'csvtransformers_output.csv'
  • idCol: string, defaults to 'id'
  • targetCol: string, defaults to 'recommend'
  • newCol1: string, defaults to recommend_true
  • newCol2: string, defaults to recommend_false
// simplest example using minimum required input
csvtransformers.aggregatorBool('input.csv')
// skipping optional arguments
csvtransformers.aggregatorBool('input.csv', undefined, 'product_id')

.aggregatorInt()

Creates an aggregation of integer values for a given id and outputs the tally to newCol1 through newCol5. Useful for aggregating 1-5star ratings.

.aggregatorInt(inputFile, outputFile, targetCol,)
  • inputFile: string, required
  • idCol: string, required
  • targetCol: string, defaults to 'recommend'
  • newCol1: string, defaults to rating1
  • newCol2: string, defaults to rating2
  • newCol3: string, defaults to rating3
  • newCol4: string, defaults to rating4
  • newCol5: string, defaults to rating5
  • outputFile defaults to 'csvtransformers_output.csv'
// simplest example using minimum required input
csvtransformers.aggregatorInt(Coming soon...)
// skipping optional arguments
csvtransformers.aggregatorInt(Coming soon...)

.binaryToBoolean()

convert a binary value to boolean (0=false, 1=true)

.binaryToBoolean(inputFile, targetCol, outputFile)
  • inputFile: string, required
  • targetCol: string, required
  • outputFile defaults to 'csvtransformers_output.csv'
// simplest example using minimum required input
csvtransformers.binaryToBoolean(Coming soon...)
// skipping optional arguments
csvtransformers.binaryToBoolean(Coming soon...)

.booleanToBinary()

convert a boolean value to binary (false=0, true=1)

.booleanToBinary(inputFile, targetCol, outputFile)
  • inputFile: string, required
  • targetCol: string, required
  • outputFile defaults to 'csvtransformers_output.csv'
// simplest example using minimum required input
csvtransformers.booleanToBinary(Coming soon...)
// skipping optional arguments
csvtransformers.booleanToBinary(Coming soon...)

.custom()

Run your own python script

.custom(customScript)
  • customScript: string, required
// `` are required for .custom() scripts
const script = `
import pandas as pd

# read in csv file
df = pd.read_csv('my_boring_data.csv')

# convert all values in 'name' column to string 'hotdog'
df['name'] = df['name'].astype(str).replace('', 'hotdog')

# save changes to csv file
df.to_csv('my_cool_data.csv', index=False)
`
csvtransformers.custom(script)

.generator()

Generate a new csv file.

.generator(outputFile, headers, size, ...valueCols)
  • outputFile: (string) required
  • headers: (string) required
  • size: (number) required
  • valueCols: (function) required
// 3 column csv file creation
function nameGen() {
  const names = ['John','Jane','Taylor','Sally','Tom','Harry','Lily','Olivia','Marcus','Emma'];
  const randomIndex = Math.floor(Math.random() * names.length);
  return names[randomIndex];
}
function birthdayGen() {
  let year = Math.floor(Math.random() * (2020 - 1900 + 1)) + 1900;
  let month = Math.floor(Math.random() * 12) + 1;
  let day;
  if (month === 2) {
    day = Math.floor(Math.random() * 28) + 1;
  } else if (month === 4 || month === 6 || month === 9 || month === 11) {
    day = Math.floor(Math.random() * 30) + 1;
  } else {
    day = Math.floor(Math.random() * 31) + 1;
  }
  // return the random birthday
  return `${month}/${day}/${year}`;
}

csvtransformers.generator('output.csv', 'id,name,birthday\n', 1e8, nameGen, birthdayGen)

.isoToUnix()

Change the datetime value of a column from ISO to UNIX

.isoToUnix(inputFile, outputFile, targetCol)
  • inputFile: string, required
  • outputFile: string, defaults to 'csvtransformers_output.csv'
  • targetCol: string, defaults to 'date'
//simplest example
csvtransformers.isoToUnix('input.csv')
// skipping optional arg
csvtransformers.isoToUnix('input.csv', undefined, 'datetime')

.merge()

Merge the rows of two files on a common column value

.merge(inputFile, targetCol, outputFile)
  • inputFile: string, required
  • targetCol: string, required
  • outputFile: string, defaults to 'csvtransformers_output.csv'
csvtransformers.merge(Coming Soon...)

.toLower()

converts string value to lowercase

.toLower(inputFile, targetCol, outputFile)
  • inputFile: string, required
  • targetCol: string, required
  • outputFile: string, defaults to 'csvtransformers_output.csv'
csvtransformers.toLower(Coming Soon...)

.unixToISO()

Change the datetime value of a column from UNIX to ISO

.unixToISO(inputFile, indexCol, outputFile, targetCol)
  • inputFile: string, required
  • indexCol: string, required
  • outputFile: string, defaults to 'csvtransformers_output.csv'
  • targetCol: string, defaults to 'date'
//simplest example
csvtransformers.unixToISO('input.csv', 'user_id')
// skipping optional arg
csvtransformers.unixToISO('input.csv', 'user_id', undefined, 'datetime')

Resources

NodeJS

Python

Python-Shell

Pandas

Dask

PyPi

Closing

Special thanks to every mention of transforming CSV files (in js) across the web. Contributions always welcome!