rmsval = df.loc[:, 'c1':'c4'] def getrms(row): a = np.sqrt(sum(row**2/4)) return a df['rms'] = df.apply(getrms,axis=1) df.head()
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter