Skip to content

crema v0.0.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@donnyyy777 donnyyy777 released this 09 Dec 01:44
· 134 commits to master since this release
1491f3a

This release is a bug fix.

Bug: Reading in a tab delimited file (such as a .txt file) caused crema to throw the following error: "ValueError: Usecols do not match columns". Upon further investigation, discovered that the read file method could not properly identify column names even after specifying the separator equal to "\t".

Fix: When using the pandas read_csv method, specified the "sep" argument equal to "None", which uses Python's builtin sniffer tool to automatically detect the separator used in the input file.