man-group / dtale

Visualizer for pandas data structures
http://alphatechadmin.pythonanywhere.com
GNU Lesser General Public License v2.1
4.72k stars 400 forks source link

String Joiner Parsing Problem #804

Closed T-a-c-h-y-o-n closed 1 year ago

T-a-c-h-y-o-n commented 1 year ago

How about we Decouple the characters between the String Joiner with a pipe instead of a comma? Because it causes problems when we try to Split by Character in Dataframe functions. There is no problem with parsing because pipe is not usually used in writing.

aschonfeld commented 1 year ago

I can try making it so that you can specify what character you want to join the strings with

T-a-c-h-y-o-n commented 1 year ago

Hi, If several products are defined in the same variable and separated with a comma, we must specify this with a comma in the split by character. This leads to different columns, whereas there should be several products in a single column. If there was pipe or another character not used in the sentence, such a problem would not arise.

aschonfeld commented 1 year ago

I'll just switch it to use a pipe. Pretty easy to do

T-a-c-h-y-o-n commented 1 year ago

Thanks your interest

aschonfeld commented 1 year ago

@T-a-c-h-y-o-n just released v3.6.0 to pypi (should be on conda-forge soon) with this fix included.