{ "data_id": "44583", "name": "micro-mass_seed_0_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "micro-mass_seed_0_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "a435550e-023b-44bd-afed-f8051581182a", "description": "Subsampling of the dataset micro-mass (1515) with\n\nseed=0\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:34:57", "update_comment": null, "last_update": "2022-11-17 18:34:57", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111345\/dataset", "default_target_attribute": "Class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "micro-mass_seed_0_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset micro-mass (1515) with seed=0 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 " ], "weight": 5 }, "qualities": { "NumberOfInstances": 571, "NumberOfFeatures": 101, "NumberOfClasses": 20, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 100, "NumberOfSymbolicFeatures": 1, "NumberOfBinaryFeatures": 0, "PercentageOfBinaryFeatures": 0, "PercentageOfInstancesWithMissingValues": 0, "AutoCorrelation": 0.6982456140350877, "PercentageOfMissingValues": 0, "Dimensionality": 0.17688266199649738, "PercentageOfNumericFeatures": 99.00990099009901, "MajorityClassPercentage": 10.507880910683012, "PercentageOfSymbolicFeatures": 0.9900990099009901, "MajorityClassSize": 60, "MinorityClassPercentage": 1.926444833625219, "MinorityClassSize": 11 }, "tags": [ { "uploader": "38960", "tag": "Meteorology" }, { "uploader": "38960", "tag": "Transportation" } ], "features": [ { "name": "Class", "index": "100", "type": "nominal", "distinct": "20", "missing": "0", "target": "1", "distr": [ [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], [ [ "50", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "52", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "29", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "14", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "16", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "24", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "29", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "21", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "31", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "18", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "32", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "31", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "60", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "27", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "20", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "28" ] ] ] }, { "name": "V7", "index": "0", "type": "numeric", "distinct": "93", "missing": "0", "min": "0", "max": "2160791", "mean": "28192", "stdev": "146282" }, { "name": "V11", "index": "1", "type": "numeric", "distinct": "55", "missing": "0", "min": "0", "max": "3492955", "mean": "55247", "stdev": "271351" }, { "name": "V27", "index": "2", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V35", "index": "3", "type": "numeric", "distinct": "84", "missing": "0", "min": "0", "max": "3091789", "mean": "29139", "stdev": "154108" }, { "name": "V41", "index": "4", "type": "numeric", "distinct": "35", "missing": "0", "min": "0", "max": "309309", "mean": "5015", "stdev": "29676" }, { "name": "V62", "index": "5", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "12431504", "mean": "42227", "stdev": "535675" }, { "name": "V68", "index": "6", "type": "numeric", "distinct": "53", "missing": "0", "min": "0", "max": "24649528", "mean": "131323", "stdev": "1204164" }, { "name": "V76", "index": "7", "type": "numeric", "distinct": "75", "missing": "0", "min": "0", "max": "16522235", "mean": "240611", "stdev": "1508404" }, { "name": "V92", "index": "8", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "3605114", "mean": "47713", "stdev": "281338" }, { "name": "V98", "index": "9", "type": "numeric", "distinct": "19", "missing": "0", "min": "0", "max": "1712800", "mean": "7894", "stdev": "81968" }, { "name": "V102", "index": "10", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V108", "index": "11", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "12690171", "mean": "73584", "stdev": "885748" }, { "name": "V152", "index": "12", "type": "numeric", "distinct": "98", "missing": "0", "min": "0", "max": "20146890", "mean": "133609", "stdev": "1240750" }, { "name": "V168", "index": "13", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "20335", "mean": "36", "stdev": "851" }, { "name": "V194", "index": "14", "type": "numeric", "distinct": "27", "missing": "0", "min": "0", "max": "3219634", "mean": "19034", "stdev": "179060" }, { "name": "V213", "index": "15", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V259", "index": "16", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V289", "index": "17", "type": "numeric", "distinct": "68", "missing": "0", "min": "0", "max": "22399980", "mean": "154990", "stdev": "1196180" }, { "name": "V299", "index": "18", "type": "numeric", "distinct": "35", "missing": "0", "min": "0", "max": "378030", "mean": "4150", "stdev": "25104" }, { "name": "V307", "index": "19", "type": "numeric", "distinct": "157", "missing": "0", "min": "0", "max": "14739610", "mean": "332413", "stdev": "1490765" }, { "name": "V316", "index": "20", "type": "numeric", "distinct": "175", "missing": "0", "min": "0", "max": "12082439", "mean": "255431", "stdev": "1000841" }, { "name": "V321", "index": "21", "type": "numeric", "distinct": "5", "missing": "0", "min": "0", "max": "609950", "mean": "1709", "stdev": "28085" }, { "name": "V335", "index": "22", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "288021", "mean": "799", "stdev": "12740" }, { "name": "V364", "index": "23", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V388", "index": "24", "type": "numeric", "distinct": "17", "missing": "0", "min": "0", "max": "1176489", "mean": "3155", "stdev": "49948" }, { "name": "V405", "index": "25", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "268064", "mean": "956", "stdev": "12619" }, { "name": "V406", "index": "26", "type": "numeric", "distinct": "141", "missing": "0", "min": "0", "max": "6830667", "mean": "92366", "stdev": "508772" }, { "name": "V416", "index": "27", "type": "numeric", "distinct": "90", "missing": "0", "min": "0", "max": "4631252", "mean": "99050", "stdev": "434963" }, { "name": "V428", "index": "28", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V433", "index": "29", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V450", "index": "30", "type": "numeric", "distinct": "19", "missing": "0", "min": "0", "max": "1508670", "mean": "5475", "stdev": "68165" }, { "name": "V468", "index": "31", "type": "numeric", "distinct": "118", "missing": "0", "min": "0", "max": "6526145", "mean": "102045", "stdev": "468521" }, { "name": "V469", "index": "32", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V472", "index": "33", "type": "numeric", "distinct": "106", "missing": "0", "min": "0", "max": "8451594", "mean": "151590", "stdev": "629829" }, { "name": "V474", "index": "34", "type": "numeric", "distinct": "73", "missing": "0", "min": "0", "max": "540389", "mean": "11313", "stdev": "49724" }, { "name": "V481", "index": "35", "type": "numeric", "distinct": "76", "missing": "0", "min": "0", "max": "2702562", "mean": "48272", "stdev": "244446" }, { "name": "V483", "index": "36", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "445133", "mean": "1462", "stdev": "20640" }, { "name": "V491", "index": "37", "type": "numeric", "distinct": "51", "missing": "0", "min": "0", "max": "290312", "mean": "3957", "stdev": "23063" }, { "name": "V496", "index": "38", "type": "numeric", "distinct": "146", "missing": "0", "min": "0", "max": "1934791", "mean": "27112", "stdev": "125317" }, { "name": "V512", "index": "39", "type": "numeric", "distinct": "160", "missing": "0", "min": "0", "max": "17018260", "mean": "479378", "stdev": "1552748" }, { "name": "V514", "index": "40", "type": "numeric", "distinct": "84", "missing": "0", "min": "0", "max": "5999035", "mean": "108977", "stdev": "529124" }, { "name": "V526", "index": "41", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V529", "index": "42", "type": "numeric", "distinct": "87", "missing": "0", "min": "0", "max": "23118756", "mean": "271150", "stdev": "1861534" }, { "name": "V567", "index": "43", "type": "numeric", "distinct": "79", "missing": "0", "min": "0", "max": "1701830", "mean": "27945", "stdev": "145526" }, { "name": "V581", "index": "44", "type": "numeric", "distinct": "71", "missing": "0", "min": "0", "max": "1837727", "mean": "25259", "stdev": "116840" }, { "name": "V585", "index": "45", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "1669253", "mean": "33417", "stdev": "180426" }, { "name": "V608", "index": "46", "type": "numeric", "distinct": "121", "missing": "0", "min": "0", "max": "32677044", "mean": "102742", "stdev": "1381303" }, { "name": "V638", "index": "47", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V643", "index": "48", "type": "numeric", "distinct": "58", "missing": "0", "min": "0", "max": "69743968", "mean": "157722", "stdev": "2945915" }, { "name": "V655", "index": "49", "type": "numeric", "distinct": "30", "missing": "0", "min": "0", "max": "4657466", "mean": "21265", "stdev": "241281" }, { "name": "V657", "index": "50", "type": "numeric", "distinct": "47", "missing": "0", "min": "0", "max": "1157238", "mean": "15267", "stdev": "91872" }, { "name": "V667", "index": "51", "type": "numeric", "distinct": "15", "missing": "0", "min": "0", "max": "2464839", "mean": "7817", "stdev": "109500" }, { "name": "V719", "index": "52", "type": "numeric", "distinct": "294", "missing": "0", "min": "0", "max": "13656050", "mean": "619176", "stdev": "1375863" }, { "name": "V720", "index": "53", "type": "numeric", "distinct": "83", "missing": "0", "min": "0", "max": "3078022", "mean": "34354", "stdev": "237298" }, { "name": "V739", "index": "54", "type": "numeric", "distinct": "38", "missing": "0", "min": "0", "max": "2741889", "mean": "47116", "stdev": "266356" }, { "name": "V740", "index": "55", "type": "numeric", "distinct": "42", "missing": "0", "min": "0", "max": "983984", "mean": "10724", "stdev": "70401" }, { "name": "V751", "index": "56", "type": "numeric", "distinct": "112", "missing": "0", "min": "0", "max": "1348566", "mean": "42754", "stdev": "158597" }, { "name": "V755", "index": "57", "type": "numeric", "distinct": "84", "missing": "0", "min": "0", "max": "1642123", "mean": "21461", "stdev": "121443" }, { "name": "V793", "index": "58", "type": "numeric", "distinct": "27", "missing": "0", "min": "0", "max": "7530545", "mean": "91907", "stdev": "604628" }, { "name": "V804", "index": "59", "type": "numeric", "distinct": "53", "missing": "0", "min": "0", "max": "3592037", "mean": "27727", "stdev": "188703" }, { "name": "V820", "index": "60", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "2752344", "mean": "32306", "stdev": "178854" }, { "name": "V846", "index": "61", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "6649554", "mean": "57056", "stdev": "469477" }, { "name": "V853", "index": "62", "type": "numeric", "distinct": "119", "missing": "0", "min": "0", "max": "6702680", "mean": "79915", "stdev": "384702" }, { "name": "V863", "index": "63", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "782434", "mean": "6026", "stdev": "51975" }, { "name": "V873", "index": "64", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "269303", "mean": "862", "stdev": "13351" }, { "name": "V880", "index": "65", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V898", "index": "66", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V900", "index": "67", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V908", "index": "68", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "27943", "mean": "49", "stdev": "1169" }, { "name": "V913", "index": "69", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "758287", "mean": "6249", "stdev": "48915" }, { "name": "V922", "index": "70", "type": "numeric", "distinct": "19", "missing": "0", "min": "0", "max": "587644", "mean": "3077", "stdev": "32289" }, { "name": "V938", "index": "71", "type": "numeric", "distinct": "77", "missing": "0", "min": "0", "max": "3275351", "mean": "39233", "stdev": "194801" }, { "name": "V963", "index": "72", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "258490", "mean": "1059", "stdev": "15154" }, { "name": "V991", "index": "73", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "3912590", "mean": "13129", "stdev": "176309" }, { "name": "V994", "index": "74", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "6228596", "mean": "81614", "stdev": "444859" }, { "name": "V1006", "index": "75", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "154038", "mean": "378", "stdev": "6940" }, { "name": "V1015", "index": "76", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1022", "index": "77", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1029", "index": "78", "type": "numeric", "distinct": "29", "missing": "0", "min": "0", "max": "3687268", "mean": "26326", "stdev": "219068" }, { "name": "V1031", "index": "79", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "57492", "mean": "159", "stdev": "2784" }, { "name": "V1040", "index": "80", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "2246755", "mean": "10138", "stdev": "103892" }, { "name": "V1045", "index": "81", "type": "numeric", "distinct": "92", "missing": "0", "min": "0", "max": "3272576", "mean": "37255", "stdev": "228092" }, { "name": "V1053", "index": "82", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1063", "index": "83", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1087", "index": "84", "type": "numeric", "distinct": "43", "missing": "0", "min": "0", "max": "2476824", "mean": "10720", "stdev": "110578" }, { "name": "V1109", "index": "85", "type": "numeric", "distinct": "5", "missing": "0", "min": "0", "max": "1267338", "mean": "2270", "stdev": "53039" }, { "name": "V1114", "index": "86", "type": "numeric", "distinct": "128", "missing": "0", "min": "0", "max": "771489", "mean": "21680", "stdev": "78406" }, { "name": "V1124", "index": "87", "type": "numeric", "distinct": "69", "missing": "0", "min": "0", "max": "6144662", "mean": "52269", "stdev": "360875" }, { "name": "V1129", "index": "88", "type": "numeric", "distinct": "103", "missing": "0", "min": "0", "max": "49344028", "mean": "1319914", "stdev": "4948903" }, { "name": "V1156", "index": "89", "type": "numeric", "distinct": "35", "missing": "0", "min": "0", "max": "30081172", "mean": "100995", "stdev": "1391473" }, { "name": "V1172", "index": "90", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "1623622", "mean": "14075", "stdev": "104622" }, { "name": "V1174", "index": "91", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "821735", "mean": "2349", "stdev": "37102" }, { "name": "V1209", "index": "92", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "1596583", "mean": "13976", "stdev": "109726" }, { "name": "V1227", "index": "93", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "6482680", "mean": "14914", "stdev": "273748" }, { "name": "V1255", "index": "94", "type": "numeric", "distinct": "42", "missing": "0", "min": "0", "max": "3640649", "mean": "28434", "stdev": "223820" }, { "name": "V1257", "index": "95", "type": "numeric", "distinct": "74", "missing": "0", "min": "0", "max": "2467220", "mean": "27797", "stdev": "162042" }, { "name": "V1271", "index": "96", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1272", "index": "97", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1274", "index": "98", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "510686", "mean": "8855", "stdev": "46292" }, { "name": "V1295", "index": "99", "type": "numeric", "distinct": "37", "missing": "0", "min": "0", "max": "408592", "mean": "4352", "stdev": "30012" } ], "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 }