This repository was archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
fix: Perform the last action with the column name modified. #9
Open
tashiro-akira
wants to merge
22
commits into
sapientml:main
Choose a base branch
from
tashiro-akira:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
55786bc
fix: Fix error caused when input data is mixed with datetime and stri…
5466bed
fix: Fix error caused when input data is mixed with datetime and stri…
f4807c2
fix: Fix error caused when input data is mixed with datetime and stri…
99a9d7e
fix:Modifying Source Code Formatting
e951d23
Merge branch 'sapientml:main' into main
tashiro-akira 812da98
fix:Reflect Review
937880c
fix: Remove Unnecessary Imports
79e39e3
fix: Reflect the point
22e0080
Merge branch 'sapientml:main' into main
tashiro-akira edd4d49
fix:Reflected review results
e063795
style:Modified to fit the format
22be366
fix:Fixed to return column names in csv file
3b62abb
fix:Reflected the content of the review
ce996da
Merge branch 'sapientml:main' into main
tashiro-akira 9ea7ad3
Merge branch 'sapientml:main' into main
tashiro-akira 6433d99
fix:Reflected review results
bed2b88
Merge branch 'sapientml:main' into main
tashiro-akira e1da54c
fix:Reflect Review Results
tashiro-akira 895d5c4
Merge branch 'main' of https://github.com/tashiro-akira/preprocess_ta…
tashiro-akira bde5ad9
fix:Fixed error in running lint
tashiro-akira 8c15e21
fix:Reflect Review Results
tashiro-akira 1f62efd
fix:Reflect Review Results
tashiro-akira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current method fails when the renamed names are the same as original names.
For example, there are original columns
Age
,Age{}
andAge1
.In the case,
Age
->Age1
,Age{}
->Age0
, so there are twoAge1
columns.Could you consider the case?