Seth Russell

Results 19 comments of Seth Russell

I've started looking into this a little and so far am working on getting unit tests to run successfully. Got the following errors when running `devtools::test()` ``` ── Failure (Line...

Just to clarify things for others looking at this same issue: I used the below as recommended by @gaborcsardi - it fixed my utf8 build issue. ```r rhub::check( platform="windows-x86_64-devel", env_vars=c(R_COMPILE_AND_INSTALL_PACKAGES...

I've used this extension for about a year for SQLite. Has worked well and been easy to use. Somehow in the last month or two it stopped working and I...

@ahuang11 - Looks like you beat me to opening this issue! Thanks! For people wanting more details or taking on this issue, here's some background: https://discourse.holoviz.org/t/pandas-hvplot-datashader-and-legends/299/8 As a brief summary...

Any progress on this issue?

For those following this bug - it appears this project has been abandoned. I've found this package "remote-edit-ni" that is a fork and has some fixes: https://github.com/newinnovations/remote-edit-ni

If I replace this line: ```python df = pl.read_parquet(source=glob.glob(path_base + '*.parquet'), columns=cols_of_interest) ``` With this: ```python dfs = [] for f in glob.glob(path_base + '*.parquet'): print(f) dfs.append(pl.read_parquet(source=f, columns=cols_of_interest)) ``` No...

In my case, the parquet files were generated using Pandas, but then parsed with Polars. I'm guessing the `maximum key is too small` error was due to something supported by...

I'm seeing a similar problem - it doesn't remember my session. Not getting any errors through the UI either.