You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I am very new in danfojs. Can someone help me how I can manipulating specific column?
For example I want
let data = [[1, NaN, 3], [4, 5, 6], [20, 30, NaN], [4, 5, 6]]
let cols = ["A", "B", "C"]
let df = new dfd.DataFrame(data, { columns: cols })
Expected Result:
[4,1,6], [20,10,NaN], [4,1,6]
Any help will be appreciated
Beta Was this translation helpful? Give feedback.
All reactions