Merged
Conversation
This will be restored later, when we finalize the API to work with time series.
Closed
56 tasks
Contributor
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #979 +/- ##
==========================================
+ Coverage 94.42% 94.99% +0.57%
==========================================
Files 121 123 +2
Lines 7459 7696 +237
==========================================
+ Hits 7043 7311 +268
+ Misses 416 385 -31 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
lars-reimann
pushed a commit
that referenced
this pull request
Feb 26, 2025
## [0.30.0](v0.29.0...v0.30.0) (2025-02-26) ### Features * add more mathematical operations ([#986](#986)) ([2539a20](2539a20)), closes [#977](#977) * add more string operations ([#993](#993)) ([9bc5673](9bc5673)), closes [#977](#977) * consistent `selector` parameters ([#983](#983)) ([dc4640b](dc4640b)) * improved operations on cells ([#985](#985)) ([7396c94](7396c94)), closes [#977](#977) * make `data` parameter of `Table` and `Column` required ([#978](#978)) ([29fdefa](29fdefa)) * stabilize `Cell` class ([#984](#984)) ([96be911](96be911)), closes [#977](#977) * stabilize `Column` ([#981](#981)) ([38dc89c](38dc89c)), closes [#754](#754) [#977](#977) * stabilize `Row` class ([#980](#980)) ([ca1ce3d](ca1ce3d)), closes [#977](#977) * stabilize `Table` class ([#979](#979)) ([db85617](db85617)), closes [#875](#875) [#877](#877) [#977](#977) [#754](#754) * transform multiple columns of `Table` at once ([#982](#982)) ([2db9069](2db9069))
Member
Author
|
🎉 This PR is included in version 0.30.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
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.
Closes #875
Closes #877
Closes partially #977
Summary of Changes
Stabilize the API of the
Tableclass. This PR introduces several breaking changes to this class:dataparameter of__init__is now required.remove_columns_excepttoselect_columnsadd_table_as_columnstoadd_tables_as_columnsadd_table_as_rowstoadd_tables_as_rowsIt also adds new functionality throughout the library:
Table.add_index_columnto add a new column with auto-incrementing integer values to a table.Table.filter_rowsto keep only the rows matched by some predicate.Table.filter_rows_by_columnto keep only the rows that have a value in a specific column that matches some predicate.random_seedforTable.shuffle_rowsandTable.split_rowsto control the pseudorandom number generator. Previously, the methods were deterministic, but the seed was hidden.missing_value_ratio_thresholdofTable.remove_columns_with_missing_valuesto be able to keep columns with only a few missing values.ColumnTypeto instantiate column types. This prepares for Overwrite specified schema (selectively) #754.Finally, the methods
Table.summarize_statisticsandColumn.summarize_statisticsare now considerably faster.