add a string prefix to each value in a string column using Pandas

后端 未结 5 739
梦如初夏
梦如初夏 2020-11-28 03:05

I would like to append a string to the start of each value in a said column of a pandas dataframe (elegantly). I already figured out how to kind-of do this and I am currentl

5条回答
  •  自闭症患者
    2020-11-28 03:17

    As an alternative, you can also use an apply combined with format (or better with f-strings) which I find slightly more readable if one e.g. also wants to add a suffix or manipulate the element itself:

    df = pd.DataFrame({'col':['a', 0]})
    
    df['col'] = df['col'].apply(lambda x: "{}{}".format('str', x))
    

    which also yields the desired output:

        col
    0  stra
    1  str0
    

    If you are using Python 3.6+, you can also use f-strings:

    df['col'] = df['col'].apply(lambda x: f"str{x}")
    

    yielding the same output.

    The f-string version is almost as fast as @RomanPekar's solution (python 3.6.4):

    df = pd.DataFrame({'col':['a', 0]*200000})
    
    %timeit df['col'].apply(lambda x: f"str{x}")
    117 ms ± 451 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)
    
    %timeit 'str' + df['col'].astype(str)
    112 ms ± 1.04 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
    

    Using format, however, is indeed far slower:

    %timeit df['col'].apply(lambda x: "{}{}".format('str', x))
    185 ms ± 1.07 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
    

提交回复
热议问题