Conversation
* Binary Ops early prototype * Basic use case unittests
* Axis!void will store data in an array of variant * Modified opBinary to allow arithmetic ops with variant Axis * Added some unittest to verify correct assignment and behavior
…tions * Enabled return of Axis!void struct with data stored as Variant * Enabled column binary operation on Axis!void * Added unittest to verify correct behavior
* Division of Axis!void with Axis!T works now * Added a function to generate code from given indexes * Optimized Index.optimize() * Axis.convertTo!T works with Axis!void
* Used ElementType instead of the inefficient thing I was doing before
…tIndex * DataFrame declaration with static array * Building Index row wise * DataFrame.setIndex set the index of columns even if it was shorter than RowType.length
* Construct Indexes using a Zip range * Construct Indexes using unique levels
* zip returns a ZipShorten which isn;t exposed * Added levels in parameter to statically know the length of zip tuple
* Added a part about declaration of DataFrame * Added documentation for buildFromPairs, buildFromZip and buildFromLevels * Added documentation on Binary Operations
* Improved error message * Lint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue: #1
New ways to construct index, declare DataFrame and Bianry Operations on DataFrame Rows and Columns.