-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove fixcolnames option added in #751
This was discussed and intentionally left out for all IO methods. The plan is for `df.colname` to be the idiomatic way of specifying a column in the near future (it already works on some experimental AbstractDataFrame types), and `df.col.name`, for example, can't be parsed as desired. (`.` is meaningful syntax in Julia, so using `col.name` in place of a valid identifier is like using `col+name` which wouldn't be valid in R, for example. It's trivial to work around in user code if the user insists, but it doesn't belong in any package code for now, though adding it uniformly to all IO methods may be revisited later if the roadmap changes.
- Loading branch information
Showing
2 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters