Series.iloc
Parameters
Type
Description
Default
Examples
Indexing specific rows by index
const dfd = require("danfojs-node")
let s = new dfd.Series([12, 34, 2.2, 2, 30, 30, 2.1, 7])
s.iloc([0,5]).print()Index by a slice of row
Slice Series by boolean condition
Last updated