Giter VIP home page Giter VIP logo

Comments (6)

jheer avatar jheer commented on August 24, 2024

Thanks! I've created a PR that adds more selection helpers (matches, startswith, endswith) for parity with dplyr.

As for more advanced renaming support, you can always add (and share!) your own utilities outside of the core Arquero library. For example:

function normalize_name(str) {
  // perform custom column name normalization
}

// create a mapping of original column names to normalized names
const nameMap = {};
table.columnNames.forEach(s => nameMap[name] = normalize_name(s));

// rename the columns
const newTable = table.select(nameMap);

from arquero.

ericemc3 avatar ericemc3 commented on August 24, 2024

Thank you for the suggestion, so here is my share for normalizing table columns names:

function normalize_column_name(str, options = {lower:true}) {
    str = str.replace(/[%#$£()\'\"]/g, '')
             .replace( /[ /,+.*:\-\r\n@]/g, "_" ) 
             .replace(/_+/g, '_') 
             .normalize("NFD").replace(/[\u0300-\u036f]/g, "") //get rid of accents
   
  if (options.lower) 
    str = str.toLowerCase() ;
  
  return str ;
}

function normalize_table_names(tb, options = {lower:true}) {
  return tb.select( tb.columnNames().map(d => ({[d]: normalize_column_name(d, options)})) ) ;
}

from arquero.

jheer avatar jheer commented on August 24, 2024

Thanks for sharing! @ericemc3, do you mind if I later add this (or a minor revision thereof) to the Arquero Cookbook? If that's OK, let me know how you'd like me to acknowledge your contribution (by name, GitHub id, Observable id, or...?).

from arquero.

ericemc3 avatar ericemc3 commented on August 24, 2024

My pleasure, you can of course reuse this as you want. I published them on https://observablehq.com/@ericmauviere/arquero-table-utils

from arquero.

ericemc3 avatar ericemc3 commented on August 24, 2024

I added a new utility function for renaming columns :

function rename_columns(tb, upd) {
  let colsdef = tb.columnNames().map(d => ({[d]:d}) ).reduce((a,v) => Object.assign(a,v)) ;
  
  for (const k in upd) {
    if (colsdef.hasOwnProperty(k)) 
        colsdef[k] = upd[k] ; 
  }
  
  return tb.select(colsdef) ;
}

rename_columns(tb, {currentname1:'newname1', currentname2:'newname2'})

from arquero.

jheer avatar jheer commented on August 24, 2024

New selection helpers now staged for v1.2.0.

from arquero.

Related Issues (20)

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.