-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Bug and Enhancement request of replace function. #671
Comments
@toshiakiasakura great suggestion! I'll work on adding these fixes/features and let you know when a new version is ready. Thanks |
@toshiakiasakura I did some more digging and I forgot that the partial replacement is available you just need to go to "Dataframe Functions" in the main menu and then select the column you want and the replacement you want made. Also if you don't want to create a new column select "Inplace" If you want I can look into adding this function to the "Replacements" popup |
Thank you very much! |
@toshiakiasakura just released v2.6.0 with these enhancements/updates |
Current Behavior:
pd.read_csv
dtale.show()
However, this can not replace cells with inclusion of search for characters.
The current auto-generated code is like this.
However, regex_pat part of line, should be like this.
After replacing space with dot, it works well.
Also, I want partial replacement function, which can be achieved by
df["name"].str.replace("hoge", "non")
Without this type of replacement functions, we can not confotably use dtale for data cleaning purposes.
I am very fascinated with this open source package, so that I hope the suggested bug will be fixed and function will be implemented.
The text was updated successfully, but these errors were encountered: