Open erinyoung opened 9 months ago
Would it be wise to move from Pandas to Polars? See [https://pola.rs/posts/polars-string-type/]
I think pandas is better documented
I have created a branch of HeatCluster - v1.1.0.20240131 using Polars. How can I test that within github without modifying main?
If all your changed are on a branch, then you can push to your github repo and then create a PR. That should trigger your tests.
Doesn’t the PR pull from the new branch to main? Also, when I try running the tests, I am getting errors. When I correct the files (heatcluster.yml, and heatcluster.py) and commit changes, the test is still using the old version of the files and gives me the same error. For instance, I changed (tabs = pl.scan_csv(file, nrows=1, sep='\t').shape[1]) to (tabs = pl.scan_csv(file, n_rows=1, sep='\t').shape[1]) in heatcluster.py and committed the change. But when I run the test, it gives me the same error, that nrows is incorrect!
I don't think this is an error, but I wanted to let you know that there's a DepreciationWarning with heatcluster due to pandas' new dependency.