Open winterfell2021 opened 2 years ago
I suspect the validation step is slowing your code down: https://github.com/kz26/PyExcelerate/blob/dev/pyexcelerate/Worksheet.py#L166-L168
You can get around it by doing something like:
worksheet._merges.append(worksheet.range(...))
Probably the proper way to do this would be to add a validate=False
argument, we'd welcome a pull request for that.
Thanks your kind, quick reply. Got 44.35159114399994 seconds without validation and 712.614892569 seconds as normal! Thats insane! A pr will be made afterwards
Hi there, thanks for your great work! I got a large dataframe 30*10000 for example, and about 100 groups for each column to merge. Like
How can i speed up the merge function?