numere-org / NumeRe

Framework for numerical computations, data analysis and visualisation
https://www.numere.org
GNU General Public License v3.0
20 stars 7 forks source link

Easy way of inserting rows and columns into tables using code #69

Closed numeredev closed 1 year ago

numeredev commented 1 year ago

DESCRIPTION

What does your feature request improve on? Please describe. It would improve some situations if there would be simple possibilities to insert single rows or columns into a table programmatically. Removing them would also be helpful, e.g. for filtering

Describe the solution you'd like Provide commands or table methods to easily insert and remove whole columns and rows into a table using code, e.g. TABLE().insertrows(POS,COUNT), TABLE().insertcols(POS,COUNT). TABLE(),removecols({COLS}), TABLE().removerows({ROWS})

Additional context Add any other context or screenshots about the feature request here.

(Do not write below this line)


DEVS' SECTION

ANALYSIS

Can be implemented as usual table methods. Get inspired by how the rows and cols are handled within the table editor.

IMPLEMENTATION STEPS

(see also our Wiki for implementation guidelines)

DOCUMENTATION STEPS

(see also our Wiki for further information)

PULL REQUEST