- What I did
Some datesets haven't column name and if we use those dataset Libra select first row so it's wrong. If we add usercols and names params we can create column name or we can select
- How I did it
So pandas lib. have this two args
data = pd.read_csv(self.dataset, names=None, usecols=None)
- How to verify it
Firstly I try without column names (libra default version) and I got some problem with result
Change the pd.read_csv(self.dataset) to pd.read_csv(self.dataset, names=None, usecols=None) and try again and I solve this problem
[x] I updated the docs.
This pull request adds a new feature to libra. @Palashio, could you please take a look at it?
- What I did Some datesets haven't column name and if we use those dataset Libra select first row so it's wrong. If we add usercols and names params we can create column name or we can select - How I did it So pandas lib. have this two args data = pd.read_csv(self.dataset, names=None, usecols=None) - How to verify it
This pull request adds a new feature to libra. @Palashio, could you please take a look at it?