Robin Linacre

Results 234 comments of Robin Linacre

@Th368MoJ i wonder if this could be to do with the pandas null issue. I think it's an outside chance, but may be worth Mariana trying first because it's simple....

Did you manage to identify which blocking rule was causing the problem? Would be useful to know as it may help us track down this problem Did clearing up the...

Weird! Please could you try with the broken blocking rules with the with the code I posted above that removes np.nan and pd.na with pure python None?

Thanks for the info. Are you on windows? Is the source of the data Microsoft SQL server? One work around is to use the Spark linker, which doesn't suffer from...

Thanks - that seems to be the pattern - every time we've seen this error the data is from mssql server on windows. We'll continue to look into it. Its...

@leewilson-kmd I don't suppose it would be possible to share the data that causes the error? (The CSV file). If so, would be best to share direct with [email protected] (see...

It looks like this finally may be solved on the latest master of duckdb: https://github.com/duckdb/duckdb/issues/1650#issuecomment-1312534236 Would be useful if people who have seen this issue would check whether it's gone...

We've encountered this more than one. We fixed one of these issues by adding a utf encoding header: `# -*- coding: utf-8 -*-` I'm not sure why that fixed it...

A separate unicode error: ``` --------------------------------------------------------------------------- UnicodeEncodeError Traceback (most recent call last) c:\Users\robin\OneDrive\Desktop\hello\splink_demos\try.py in () [69](file:///c%3A/Users/robin/OneDrive/Desktop/hello/splink_demos/try.py?line=68) chart = linker.waterfall_chart(records_to_plot, filter_nulls=False) [70](file:///c%3A/Users/robin/OneDrive/Desktop/hello/splink_demos/try.py?line=69) from splink.charts import save_offline_chart ---> [71](file:///c%3A/Users/robin/OneDrive/Desktop/hello/splink_demos/try.py?line=70) save_offline_chart(chart.spec, "waterfall.html", overwrite=True)...