Rename multiple column to remove spaces and comma

Registered Posts: 1 ✭✭✭✭
I try to join two data sets, but returns the following error: "Column name can not contain comma, quotation mark, leading or trailing white spaces with DSS engine"

Is there any way to remove multiple columns in mass to remove spaces and comma?

Best Answer

  • Partner, Registered Posts: 43 Partner
    Answer ✓

    Hi Farid,

    You can do it with a Python Recipe using:


    df.columns = df.columns.str.replace(',', '').replace(' ','')

    Another option is to use a Preparation Recipe and add step "Rename Columns" but you have to change each column manually.

Answers

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.