We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
!
Add support for using ! while using getindex to access a view instead of a copy. For example:
getindex
samples[channel, !]
People familiar with DataFrames.jl should already be used to this.
There are probably some good reasons not to do this. If so this issue can be useful for future reference.
The text was updated successfully, but these errors were encountered:
One reason not to do this is that you can't access a view when accessing a single element (e.g. view(sample, channel, 1)
view(sample, channel, 1)
Sorry, something went wrong.
this is borderline superseded by #77
No branches or pull requests
Add support for using
!
while usinggetindex
to access a view instead of a copy. For example:samples[channel, !]
People familiar with DataFrames.jl should already be used to this.
There are probably some good reasons not to do this. If so this issue can be useful for future reference.
The text was updated successfully, but these errors were encountered: