Links

Series.maximum

Obtain the maximum number between two series
danfo.Series.maximum(other)
Parameters
Type
Description
Default
other
Series
series to match
Return: {Series}
Example
Node
const dfd = require("danfojs-node")
let data1 = [30, 40, 3, 5]
let data2 = [10, 41, 2, 0]
let sf1 = new dfd.Series(data1)
let sf2 = new dfd.Series(data2)
sf1.maximum(sf2).print()
output
╔═══╤════╗
║ 0 │ 30 ║
╟───┼────╢
║ 1 │ 41 ║
╟───┼────╢
║ 2 │ 3 ║
╟───┼────╢
║ 3 │ 5 ║
╚═══╧════╝