StratoDem / pandas-js

Pandas in JavaScript for data analysis and visualization
https://stratodem.github.io/pandas.js-docs
MIT License
458 stars 36 forks source link

Small Documentation Issue #61

Open Ellis-808 opened 3 years ago

Ellis-808 commented 3 years ago

Small issue but the documentation hosted here: https://stratodem.github.io/pandas.js-docs/#code-dataframe-iterrows-code does not show the proper use of df.iterrows().

Should be: (this worked for me after some trial and error) for(const [row,idx] of **df.iterrows()**) { console.log("INDEX:", idx); console.log("ROW:", row); console.log(row.get('x') * 2); }