Series.str.capitalize
Capitalize the first character of each string
Parameters
Type
Description
Default
const dfd = require("danfojs-node")
let data = ['lower boy', 'capitals', 'sentence', 'swApCaSe']
let sf = new dfd.Series(data)
sf.str.capitalize().print()╔═══╤══════════════════════╗
║ │ 0 ║
╟───┼──────────────────────╢
║ 0 │ Lower boy ║
╟───┼──────────────────────╢
║ 1 │ Capitals ║
╟───┼──────────────────────╢
║ 2 │ Sentence ║
╟───┼──────────────────────╢
║ 3 │ Swapcase ║
╚═══╧══════════════════════╝Last updated