Skip to content

Null value for number_missing_values #20

@ArlindKadra

Description

@ArlindKadra

When using the data features, while passing through each feature, I found a null value for number_missing_values. The following code can replicate the problem:

OpenmlConnector connector = new OpenmlConnector("https://www.openml.org/", "9ed41f60b87fbe17054397936b96212d");
		Settings.CACHE_ALLOWED = false;
		DataFeature dataFeatures = connector.dataFeatures(2);
		for(Feature feature : dataFeatures.getFeatures()) {
			if(feature.getNumberOfMissingValues() != null && feature.getNumberOfMissingValues() instanceof Integer) {
				continue;
			} else {
				throw new IllegalArgumentException();
			}
		}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions