Hi,
when extracting data i.e. from XML, JSON you often have a column which you want to remove / replace by it’s extracted contents. In the followign example I got JSON containg tags:
[
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:mergekit-community/MN-Hekate-Enodia-12B",
"base_model:quantized:mergekit-community/MN-Hekate-Enodia-12B",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
]
I want to extract the tags as a list but with the same column name. Due to the chicken egg problem the new column is suffixed tags (#1)
.
I’d like to propose, to not suffix a column if the is no naming conflict by removing of the source column or add an option to replace the source which would also insert the extrated data at the same column index position.
Best
Mike