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 an easy way to get the Values of a 1d array horizontally #49

Open
fzumstein opened this issue Jan 8, 2024 · 1 comment
Open

Add an easy way to get the Values of a 1d array horizontally #49

fzumstein opened this issue Jan 8, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@fzumstein
Copy link

fzumstein commented Jan 8, 2024

  • For dynamic arrays you can simply do =TRANSPOSE(...) and you get it horizontally if it's a vertical array or vice versa.
  • 1d arrays in Python always translate to vertical ranges, which is OK. But it should be an easy thing to transpose it, very much like you can just wrap a transpose function around a dynamic array. Right now, the only way I found is to do something like this:
arr = pd.Series([1, 2, 3])
[arr]

Which I don't think is very intuitive? Maybe add something like the following?

excel.transpose(arr)
@keyur32 keyur32 added the enhancement New feature or request label Jan 8, 2024
@keyur32
Copy link
Collaborator

keyur32 commented Jan 8, 2024

Thanks! We'll evaluate adding this as a future helper function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants