-
Notifications
You must be signed in to change notification settings - Fork 5
Comparing changes
Open a pull request
base repository: Safe-DS/Library
base: v0.7.0
head repository: Safe-DS/Library
compare: v0.8.0
- 13 commits
- 84 files changed
- 7 contributors
Commits on Mar 30, 2023
-
feat: rename
fit_transformtofit_and_transform(#119)Closes #112. ### Summary of Changes Rename `fit_transform` to `fit_and_transform` to better indicate that this method combines the two steps `fit` and `transform`. --------- Co-authored-by: nikhilraj2003 <Nikhilraj@720> Co-authored-by: Lars Reimann <mail@larsreimann.com> Co-authored-by: dev-DTECH <deep64222@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 76a7112 - Browse repository at this point
Copy the full SHA 76a7112View commit details -
feat: rename
drop_XYmethods ofTabletoremove_XY(#122)### Summary of Changes Rename the `drop_XY` methods of `Table` to `remove_XY`. When users want to get rid of columns, they will probably look for "remove", particularly, since the names of methods to include new columns and rows start with "add". --------- Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 98d76a4 - Browse repository at this point
Copy the full SHA 98d76a4View commit details -
feat: rename
shuffletoshuffle_rows(#125)### Summary of Changes To be consistent with the other methods of `Table`, I've rename `shuffle` to `shuffle_rows`. This makes it obvious that the columns are not changed.
Configuration menu - View commit details
-
Copy full SHA for ea21928 - Browse repository at this point
Copy the full SHA ea21928View commit details -
feat: rename
slicetoslice_rows(#126)### Summary of Changes To be consistent with the other methods of `Table`, I've rename `slice` to `slice_rows`. This makes it obvious that the columns are not changed.
Configuration menu - View commit details
-
Copy full SHA for 20d21c2 - Browse repository at this point
Copy the full SHA 20d21c2View commit details -
feat: create empty
Tablewithout schema (#128)### Summary of Changes We no longer raise an exception when a user creates an empty `Table` without specifying a schema. `Table([])` is now allows. `add_row` and `add_rows` must still be adjusted (#127) to allow adding rows to such an empty `Table`. --------- Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ddd3f59 - Browse repository at this point
Copy the full SHA ddd3f59View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa04186 - Browse repository at this point
Copy the full SHA fa04186View commit details -
feat: new method
is_fittedto check whether a model is fitted (#130)### Summary of Changes Add a new method `is_fitted` to `Classifier`s and `Regressor`s to easily check whether they have been fitted already. --------- Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8e1c3ea - Browse repository at this point
Copy the full SHA 8e1c3eaView commit details -
feat: new method
is_fittedto check whether a transformer is fitted (……#131) ### Summary of Changes Add a new method `is_fitted` to `TableTransformer`s to easily check whether they have been fitted already. --------- Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e20954f - Browse repository at this point
Copy the full SHA e20954fView commit details
Commits on Mar 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e8cf7a6 - Browse repository at this point
Copy the full SHA e8cf7a6View commit details -
feat: improve
ColumnTypes (#132)Closes #113. ### Summary of Changes * Rename subclasses: | old| new | |--------|--------| | IntColumnType | Integer | | BooleanColumnType | Boolean | | FloatColumnType | RealNumber | | StringColumnType | String | * Add new subclass `Anything` for columns that contain any values * Add parameter `is_nullable` to all types to indicate that null values are allowed * Add tests --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1786a87 - Browse repository at this point
Copy the full SHA 1786a87View commit details -
feat: rename
TableSchematoSchema(#133)### Summary of Changes Rename `TableSchema` to `Schema` since a `Row` also has a schema. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1419d25 - Browse repository at this point
Copy the full SHA 1419d25View commit details -
feat: infer schema of row if not passed explicitly (#134)
Closes #15. ### Summary of Changes The `schema` parameter of the `Row` initializer is now optional. If it's not passed explicitly, it gets inferred from the data. The column names are set to `column_0`, `column_1`, etc. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c5869bb - Browse repository at this point
Copy the full SHA c5869bbView commit details -
chore(release): 0.8.0 [skip ci]
## [0.8.0](v0.7.0...v0.8.0) (2023-03-31) ### Features * create empty `Table` without schema ([#128](#128)) ([ddd3f59](ddd3f59)), closes [#127](#127) * improve `ColumnType`s ([#132](#132)) ([1786a87](1786a87)), closes [#113](#113) * infer schema of row if not passed explicitly ([#134](#134)) ([c5869bb](c5869bb)), closes [#15](#15) * new method `is_fitted` to check whether a model is fitted ([#130](#130)) ([8e1c3ea](8e1c3ea)) * new method `is_fitted` to check whether a transformer is fitted ([#131](#131)) ([e20954f](e20954f)) * rename `drop_XY` methods of `Table` to `remove_XY` ([#122](#122)) ([98d76a4](98d76a4)) * rename `fit_transform` to `fit_and_transform` ([#119](#119)) ([76a7112](76a7112)), closes [#112](#112) * rename `shuffle` to `shuffle_rows` ([#125](#125)) ([ea21928](ea21928)) * rename `slice` to `slice_rows` ([#126](#126)) ([20d21c2](20d21c2)) * rename `TableSchema` to `Schema` ([#133](#133)) ([1419d25](1419d25))
Configuration menu - View commit details
-
Copy full SHA for 2acbc6a - Browse repository at this point
Copy the full SHA 2acbc6aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.7.0...v0.8.0