feat: specify column names in constructor of table transformers#795
Merged
lars-reimann merged 5 commits intomainfrom May 21, 2024
Merged
feat: specify column names in constructor of table transformers#795lars-reimann merged 5 commits intomainfrom
lars-reimann merged 5 commits intomainfrom
Conversation
Contributor
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
22045f5 to
73a8baf
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #795 +/- ##
=======================================
Coverage 97.56% 97.57%
=======================================
Files 110 110
Lines 5668 5688 +20
=======================================
+ Hits 5530 5550 +20
Misses 138 138 ☔ View full report in Codecov by Sentry. |
lars-reimann
pushed a commit
that referenced
this pull request
May 29, 2024
## [0.26.0](v0.25.0...v0.26.0) (2024-05-29) ### Features * `Table.count_row_if` ([#788](#788)) ([4137131](4137131)), closes [#786](#786) * added method to load pretrained models from huggingface ([#790](#790)) ([dd8394b](dd8394b)) * infer input size of forward and LSTM layers ([#808](#808)) ([098a07f](098a07f)) * outline around dots of scatterplot ([#785](#785)) ([ee8acf7](ee8acf7)) * remove output conversions ([#792](#792)) ([46f2f5d](46f2f5d)), closes [#732](#732) * shorten some excessively long names ([#787](#787)) ([1c3ea59](1c3ea59)), closes [#772](#772) * specify column names in constructor of table transformers ([#795](#795)) ([69a780c](69a780c)) * store window size and forecast horizon in dataset ([#794](#794)) ([f07bc5a](f07bc5a)) * string operations on cells ([#791](#791)) ([4a17f76](4a17f76)) ### Bug Fixes * handling of boolean columns in column statistics ([#778](#778)) ([f61cceb](f61cceb)) * sort x values of line plot ([#782](#782)) ([74d8649](74d8649))
Member
Author
|
🎉 This PR is included in version 0.26.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.
Summary of Changes
Specify the names of the columns that a table transformer should be applied to in its constructor instead of its
fitmethod. This allows easier composition.