{ "data_id": "44727", "name": "adult_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "adult_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "e8aaa259-6437-40ae-b20e-88e7dedc338e", "description": "Subsampling of the dataset adult (1590) with\n\nseed=4\nargs.nrows=2000\nargs.ncols=100\nargs.nclasses=10\nargs.no_stratify=True\nGenerated with the following source code:\n\n\n```python\n def subsample(\n self,\n seed: int,\n nrows_max: int = 2_000,\n ncols_max: int = 100,\n nclasses_max: int = 10,\n stratified: bool = True,\n ) -> Dataset:\n rng = np.random.default_rng(seed)\n\n x = self.x\n y = self.y\n\n # Uniformly sample\n classes = y.unique()\n if len(classes) > nclasses_max:\n vcs = y.value_counts()\n selected_classes = rng.choice(\n classes,\n size=nclasses_max,\n replace=False,\n p=vcs \/ sum(vcs),\n )\n\n # Select the indices where one of these classes is present\n idxs = y.index[y.isin(classes)]\n x = x.iloc[idxs]\n y = y.iloc[idxs]\n\n # Uniformly sample columns if required\n if len(x.columns) > ncols_max:\n columns_idxs = rng.choice(\n list(range(len(x.columns))), size=ncols_max, replace=False\n )\n sorted_column_idxs = sorted(columns_idxs)\n selected_columns = list(x.columns[sorted_column_idxs])\n x = x[selected_columns]\n else:\n sorted_column_idxs = list(range(len(x.columns)))\n\n if len(x) > nrows_max:\n # Stratify accordingly\n target_name = y.name\n data = pd.concat((x, y), axis=\"columns\")\n _, subset = train_test_split(\n data,\n test_size=nrows_max,\n stratify=data[target_name],\n shuffle=True,\n random_state=seed,\n )\n x = subset.drop(target_name, axis=\"columns\")\n y = subset[target_name]\n\n # We need to convert categorical columns to string for openml\n categorical_mask = [self.categorical_mask[i] for i in sorted_column_idxs]\n columns = list(x.columns)\n\n return Dataset(\n # Technically this is not the same but it's where it was derived from\n dataset=self.dataset,\n x=x,\n y=y,\n categorical_mask=categorical_mask,\n columns=columns,\n )\n```", "format": "arff", "uploader": "Eddie Bergman", "uploader_id": 32840, "visibility": "public", "creator": "\"Eddie Bergman\"", "contributor": null, "date": "2022-11-17 18:46:09", "update_comment": null, "last_update": "2022-11-17 18:46:09", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111489\/dataset", "default_target_attribute": "class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "adult_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset adult (1590) with seed=4 args.nrows=2000 args.ncols=100 args.nclasses=10 args.no_stratify=True Generated with the following source code: ```python def subsample( self, seed: int, nrows_max: int = 2_000, ncols_max: int = 100, nclasses_max: int = 10, stratified: bool = True, ) -> Dataset: rng = np.random.default_rng(seed) x = self.x y = self.y # Uniformly sample classes = y.unique() if len(classes) > nclasses_max: vcs = y.value_counts() selected_classes = rng.choice( cla " ], "weight": 5 }, "qualities": { "NumberOfInstances": 2000, "NumberOfFeatures": 15, "NumberOfClasses": 2, "NumberOfMissingValues": 253, "NumberOfInstancesWithMissingValues": 140, "NumberOfNumericFeatures": 6, "NumberOfSymbolicFeatures": 9, "PercentageOfBinaryFeatures": 13.333333333333334, "PercentageOfInstancesWithMissingValues": 7.000000000000001, "PercentageOfMissingValues": 0.8433333333333333, "AutoCorrelation": 0.6248124062031015, "PercentageOfNumericFeatures": 40, "Dimensionality": 0.0075, "PercentageOfSymbolicFeatures": 60, "MajorityClassPercentage": 76.05, "MajorityClassSize": 1521, "MinorityClassPercentage": 23.95, "MinorityClassSize": 479, "NumberOfBinaryFeatures": 2 }, "tags": [ { "uploader": "38960", "tag": "Statistics" } ], "features": [ { "name": "class", "index": "14", "type": "nominal", "distinct": "2", "missing": "0", "target": "1", "distr": [ [ ">50K", "<=50K" ], [ [ "479", "0" ], [ "0", "1521" ] ] ] }, { "name": "age", "index": "0", "type": "numeric", "distinct": "65", "missing": "0", "min": "17", "max": "90", "mean": "39", "stdev": "13" }, { "name": "workclass", "index": "1", "type": "nominal", "distinct": "6", "missing": "112", "distr": [ [ "Private", "Self-emp-not-inc", "Self-emp-inc", "Federal-gov", "Local-gov", "State-gov", "Without-pay", "Never-worked" ], [ [ "293", "1103" ], [ "55", "111" ], [ "40", "35" ], [ "28", "34" ], [ "40", "83" ], [ "14", "52" ], [ "0", "0" ], [ "0", "0" ] ] ] }, { "name": "fnlwgt", "index": "2", "type": "numeric", "distinct": "1937", "missing": "0", "min": "18827", "max": "1024535", "mean": "190320", "stdev": "105252" }, { "name": "education", "index": "3", "type": "nominal", "distinct": "16", "missing": "0", "distr": [ [ "Bachelors", "Some-college", "11th", "HS-grad", "Prof-school", "Assoc-acdm", "Assoc-voc", "9th", "7th-8th", "12th", "Masters", "1st-4th", "10th", "Doctorate", "5th-6th", "Preschool" ], [ [ "128", "164" ], [ "91", "367" ], [ "3", "66" ], [ "95", "569" ], [ "30", "7" ], [ "16", "54" ], [ "28", "70" ], [ "1", "26" ], [ "4", "27" ], [ "2", "26" ], [ "65", "56" ], [ "0", "9" ], [ "3", "52" ], [ "12", "6" ], [ "1", "19" ], [ "0", "3" ] ] ] }, { "name": "education-num", "index": "4", "type": "numeric", "distinct": "16", "missing": "0", "min": "1", "max": "16", "mean": "10", "stdev": "2" }, { "name": "marital-status", "index": "5", "type": "nominal", "distinct": "7", "missing": "0", "distr": [ [ "Married-civ-spouse", "Divorced", "Never-married", "Separated", "Widowed", "Married-spouse-absent", "Married-AF-spouse" ], [ [ "418", "495" ], [ "25", "252" ], [ "23", "622" ], [ "2", "63" ], [ "7", "70" ], [ "4", "18" ], [ "0", "1" ] ] ] }, { "name": "occupation", "index": "6", "type": "nominal", "distinct": "13", "missing": "112", "distr": [ [ "Tech-support", "Craft-repair", "Other-service", "Sales", "Exec-managerial", "Prof-specialty", "Handlers-cleaners", "Machine-op-inspct", "Adm-clerical", "Farming-fishing", "Transport-moving", "Priv-house-serv", "Protective-serv", "Armed-Forces" ], [ [ "30", "39" ], [ "53", "195" ], [ "6", "212" ], [ "55", "159" ], [ "134", "130" ], [ "109", "128" ], [ "3", "81" ], [ "13", "116" ], [ "31", "195" ], [ "6", "49" ], [ "21", "76" ], [ "0", "9" ], [ "9", "29" ], [ "0", "0" ] ] ] }, { "name": "relationship", "index": "7", "type": "nominal", "distinct": "6", "missing": "0", "distr": [ [ "Wife", "Own-child", "Husband", "Not-in-family", "Other-relative", "Unmarried" ], [ [ "52", "56" ], [ "4", "290" ], [ "365", "427" ], [ "48", "488" ], [ "1", "58" ], [ "9", "202" ] ] ] }, { "name": "race", "index": "8", "type": "nominal", "distinct": "5", "missing": "0", "distr": [ [ "White", "Asian-Pac-Islander", "Amer-Indian-Eskimo", "Other", "Black" ], [ [ "439", "1289" ], [ "15", "38" ], [ "6", "13" ], [ "1", "11" ], [ "18", "170" ] ] ] }, { "name": "sex", "index": "9", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "Female", "Male" ], [ [ "72", "610" ], [ "407", "911" ] ] ] }, { "name": "capital-gain", "index": "10", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "99999", "mean": "1140", "stdev": "8032" }, { "name": "capital-loss", "index": "11", "type": "numeric", "distinct": "36", "missing": "0", "min": "0", "max": "2824", "mean": "79", "stdev": "381" }, { "name": "hours-per-week", "index": "12", "type": "numeric", "distinct": "66", "missing": "0", "min": "1", "max": "99", "mean": "40", "stdev": "12" }, { "name": "native-country", "index": "13", "type": "nominal", "distinct": "33", "missing": "29", "distr": [ [ "United-States", "Cambodia", "England", "Puerto-Rico", "Canada", "Germany", "Outlying-US(Guam-USVI-etc)", "India", "Japan", "Greece", "South", "China", "Cuba", "Iran", "Honduras", "Philippines", "Italy", "Poland", "Jamaica", "Vietnam", "Mexico", "Portugal", "Ireland", "France", "Dominican-Republic", "Laos", "Ecuador", "Taiwan", "Haiti", "Columbia", "Hungary", "Guatemala", "Nicaragua", "Scotland", "Thailand", "Yugoslavia", "El-Salvador", "Trinadad&Tobago", "Peru", "Hong", "Holand-Netherlands" ], [ [ "448", "1368" ], [ "0", "1" ], [ "1", "2" ], [ "1", "8" ], [ "2", "3" ], [ "2", "2" ], [ "0", "0" ], [ "1", "4" ], [ "0", "3" ], [ "3", "0" ], [ "1", "3" ], [ "2", "3" ], [ "1", "1" ], [ "0", "0" ], [ "0", "1" ], [ "5", "15" ], [ "1", "4" ], [ "0", "4" ], [ "0", "4" ], [ "1", "2" ], [ "1", "33" ], [ "0", "5" ], [ "0", "2" ], [ "0", "0" ], [ "1", "5" ], [ "0", "2" ], [ "0", "1" ], [ "1", "0" ], [ "0", "2" ], [ "0", "2" ], [ "1", "3" ], [ "0", "3" ], [ "0", "2" ], [ "0", "0" ], [ "0", "0" ], [ "0", "0" ], [ "1", "6" ], [ "0", "0" ], [ "0", "2" ], [ "0", "1" ], [ "0", "0" ] ] ] } ], "nr_of_issues": 0, "nr_of_downvotes": 0, "nr_of_likes": 0, "nr_of_downloads": 0, "total_downloads": 0, "reach": 0, "reuse": 0, "impact_of_reuse": 0, "reach_of_reuse": 0, "impact": 0 }