Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add col_header and row_header arguments to load_table #3746

Open
germa89 opened this issue Feb 17, 2025 · 0 comments
Open

Add col_header and row_header arguments to load_table #3746

germa89 opened this issue Feb 17, 2025 · 0 comments
Assignees

Comments

@germa89
Copy link
Collaborator

germa89 commented Feb 17, 2025

I think we should probably take the #3745 PR as example and have the following:

# consider that the column headers are not included in the array, but the rows headers are.
mapdl.load_table('acc_data', acceleration_data, 'time', col_headers=[1, 2, 3, 4])

# consider that the row headers are not included in the array, but the columns headers are.
mapdl.load_table('acc_data', acceleration_data, 'time', row_headers=[10, 20, 30, 40])

# consider that the column header are not included in the array, but the rows headers are.
# Everything in `acceleration_data` is data.
mapdl.load_table('acc_data', acceleration_data, 'time', col_headers=[1, 2, 3, 4], row_headers=[10, 20, 30, 40])

This should build on top of #3745. @kmkoshy this is extra work if you are up for the challenge.

I will convert this comment to a different issue.

Originally posted by @germa89 in #3305

@kmkoshy kmkoshy self-assigned this Feb 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants