We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose this is my data:
@relation R_data_frame @attribute V1 {FALSE} @attribute V2 {FALSE,TRUE} @data FALSE,TRUE FALSE,FALSE
Reading this data with RWeka gives me:
RWeka
'data.frame': 2 obs. of 2 variables: $ V1: logi FALSE FALSE $ V2: logi TRUE FALSE
while farff does not recognize the first feature as logical but as a Factor:
farff
logical
Factor
'data.frame': 2 obs. of 2 variables: $ V1: Factor w/ 1 level "FALSE": 1 1 $ V2: logi TRUE FALSE
The text was updated successfully, but these errors were encountered:
Address Issue #32: parse single logical value properly
b5b0e54
Merge pull request #33 from mlr-org/issue_32_single_logical
9402498
merged in #33
Sorry, something went wrong.
No branches or pull requests
Suppose this is my data:
Reading this data with
RWeka
gives me:while
farff
does not recognize the first feature aslogical
but as aFactor
:The text was updated successfully, but these errors were encountered: