{ "data_id": "44587", "name": "micro-mass_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "micro-mass_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "8a1a1415-112b-418c-92b9-e325e414832a", "description": "Subsampling of the dataset micro-mass (1515) 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:35:15", "update_comment": null, "last_update": "2022-11-17 18:35:15", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111349\/dataset", "default_target_attribute": "Class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "micro-mass_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset micro-mass (1515) 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 " ], "weight": 5 }, "qualities": { "NumberOfInstances": 571, "NumberOfFeatures": 101, "NumberOfClasses": 20, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 100, "NumberOfSymbolicFeatures": 1, "MinorityClassPercentage": 1.926444833625219, "MinorityClassSize": 11, "NumberOfBinaryFeatures": 0, "PercentageOfBinaryFeatures": 0, "PercentageOfInstancesWithMissingValues": 0, "PercentageOfMissingValues": 0, "AutoCorrelation": 0.6982456140350877, "PercentageOfNumericFeatures": 99.00990099009901, "Dimensionality": 0.17688266199649738, "PercentageOfSymbolicFeatures": 0.9900990099009901, "MajorityClassPercentage": 10.507880910683012, "MajorityClassSize": 60 }, "tags": [ { "uploader": "38960", "tag": "Machine Learning" }, { "uploader": "38960", "tag": "Mathematics" } ], "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": "V34", "index": "0", "type": "numeric", "distinct": "100", "missing": "0", "min": "0", "max": "17420444", "mean": "109366", "stdev": "986570" }, { "name": "V45", "index": "1", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "4560290", "mean": "13167", "stdev": "214661" }, { "name": "V54", "index": "2", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V73", "index": "3", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "617964", "mean": "5794", "stdev": "37460" }, { "name": "V92", "index": "4", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "3605114", "mean": "47713", "stdev": "281338" }, { "name": "V99", "index": "5", "type": "numeric", "distinct": "68", "missing": "0", "min": "0", "max": "20393518", "mean": "116093", "stdev": "1105743" }, { "name": "V111", "index": "6", "type": "numeric", "distinct": "34", "missing": "0", "min": "0", "max": "2211591", "mean": "12529", "stdev": "108364" }, { "name": "V126", "index": "7", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V145", "index": "8", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "131907", "mean": "302", "stdev": "5650" }, { "name": "V163", "index": "9", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "116078", "mean": "237", "stdev": "4924" }, { "name": "V164", "index": "10", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "57249", "mean": "185", "stdev": "2984" }, { "name": "V169", "index": "11", "type": "numeric", "distinct": "66", "missing": "0", "min": "0", "max": "17900254", "mean": "291024", "stdev": "1736602" }, { "name": "V199", "index": "12", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "8709684", "mean": "25728", "stdev": "392103" }, { "name": "V205", "index": "13", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "394581", "mean": "1481", "stdev": "19711" }, { "name": "V217", "index": "14", "type": "numeric", "distinct": "154", "missing": "0", "min": "0", "max": "5922583", "mean": "233702", "stdev": "718968" }, { "name": "V219", "index": "15", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "878914", "mean": "7027", "stdev": "53854" }, { "name": "V227", "index": "16", "type": "numeric", "distinct": "66", "missing": "0", "min": "0", "max": "5098246", "mean": "24846", "stdev": "256287" }, { "name": "V242", "index": "17", "type": "numeric", "distinct": "53", "missing": "0", "min": "0", "max": "32397470", "mean": "273441", "stdev": "2128420" }, { "name": "V249", "index": "18", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "237724", "mean": "879", "stdev": "13825" }, { "name": "V255", "index": "19", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V273", "index": "20", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "2130844", "mean": "24239", "stdev": "155432" }, { "name": "V278", "index": "21", "type": "numeric", "distinct": "46", "missing": "0", "min": "0", "max": "4372633", "mean": "33986", "stdev": "309197" }, { "name": "V282", "index": "22", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "984894", "mean": "11128", "stdev": "68953" }, { "name": "V335", "index": "23", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "288021", "mean": "799", "stdev": "12740" }, { "name": "V356", "index": "24", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V371", "index": "25", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "455528", "mean": "1445", "stdev": "20867" }, { "name": "V380", "index": "26", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "296511", "mean": "2017", "stdev": "20143" }, { "name": "V394", "index": "27", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V423", "index": "28", "type": "numeric", "distinct": "62", "missing": "0", "min": "0", "max": "1404293", "mean": "12768", "stdev": "83408" }, { "name": "V433", "index": "29", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V448", "index": "30", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V449", "index": "31", "type": "numeric", "distinct": "82", "missing": "0", "min": "0", "max": "6744968", "mean": "69014", "stdev": "390965" }, { "name": "V451", "index": "32", "type": "numeric", "distinct": "32", "missing": "0", "min": "0", "max": "2730534", "mean": "30948", "stdev": "202870" }, { "name": "V459", "index": "33", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "171717", "mean": "554", "stdev": "9028" }, { "name": "V463", "index": "34", "type": "numeric", "distinct": "159", "missing": "0", "min": "0", "max": "43295036", "mean": "965332", "stdev": "4117947" }, { "name": "V486", "index": "35", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "23867", "mean": "58", "stdev": "1074" }, { "name": "V489", "index": "36", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V499", "index": "37", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "8979547", "mean": "111906", "stdev": "595694" }, { "name": "V519", "index": "38", "type": "numeric", "distinct": "97", "missing": "0", "min": "0", "max": "903706", "mean": "13345", "stdev": "57763" }, { "name": "V558", "index": "39", "type": "numeric", "distinct": "40", "missing": "0", "min": "0", "max": "6531752", "mean": "24474", "stdev": "301351" }, { "name": "V565", "index": "40", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V574", "index": "41", "type": "numeric", "distinct": "117", "missing": "0", "min": "0", "max": "15038379", "mean": "118670", "stdev": "759337" }, { "name": "V583", "index": "42", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "4387867", "mean": "64782", "stdev": "380187" }, { "name": "V598", "index": "43", "type": "numeric", "distinct": "69", "missing": "0", "min": "0", "max": "631549", "mean": "10338", "stdev": "47674" }, { "name": "V607", "index": "44", "type": "numeric", "distinct": "51", "missing": "0", "min": "0", "max": "1879489", "mean": "32969", "stdev": "166800" }, { "name": "V608", "index": "45", "type": "numeric", "distinct": "121", "missing": "0", "min": "0", "max": "32677044", "mean": "102742", "stdev": "1381303" }, { "name": "V612", "index": "46", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V613", "index": "47", "type": "numeric", "distinct": "27", "missing": "0", "min": "0", "max": "1357259", "mean": "4506", "stdev": "58362" }, { "name": "V616", "index": "48", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V617", "index": "49", "type": "numeric", "distinct": "18", "missing": "0", "min": "0", "max": "8518805", "mean": "40484", "stdev": "532601" }, { "name": "V625", "index": "50", "type": "numeric", "distinct": "26", "missing": "0", "min": "0", "max": "2472525", "mean": "9693", "stdev": "123355" }, { "name": "V640", "index": "51", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V648", "index": "52", "type": "numeric", "distinct": "55", "missing": "0", "min": "0", "max": "22280198", "mean": "211052", "stdev": "1632545" }, { "name": "V650", "index": "53", "type": "numeric", "distinct": "149", "missing": "0", "min": "0", "max": "8779911", "mean": "153532", "stdev": "662913" }, { "name": "V666", "index": "54", "type": "numeric", "distinct": "51", "missing": "0", "min": "0", "max": "1193207", "mean": "7298", "stdev": "60206" }, { "name": "V680", "index": "55", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V681", "index": "56", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "22166074", "mean": "151407", "stdev": "1115270" }, { "name": "V691", "index": "57", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V696", "index": "58", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V715", "index": "59", "type": "numeric", "distinct": "86", "missing": "0", "min": "0", "max": "15427479", "mean": "239562", "stdev": "1396196" }, { "name": "V717", "index": "60", "type": "numeric", "distinct": "15", "missing": "0", "min": "0", "max": "2083881", "mean": "8631", "stdev": "122782" }, { "name": "V726", "index": "61", "type": "numeric", "distinct": "10", "missing": "0", "min": "0", "max": "1671347", "mean": "4287", "stdev": "71834" }, { "name": "V742", "index": "62", "type": "numeric", "distinct": "30", "missing": "0", "min": "0", "max": "1431159", "mean": "7070", "stdev": "68268" }, { "name": "V797", "index": "63", "type": "numeric", "distinct": "61", "missing": "0", "min": "0", "max": "1994389", "mean": "15908", "stdev": "109338" }, { "name": "V815", "index": "64", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "363186", "mean": "673", "stdev": "15223" }, { "name": "V823", "index": "65", "type": "numeric", "distinct": "47", "missing": "0", "min": "0", "max": "1603246", "mean": "18336", "stdev": "123321" }, { "name": "V837", "index": "66", "type": "numeric", "distinct": "96", "missing": "0", "min": "0", "max": "5623302", "mean": "62543", "stdev": "393676" }, { "name": "V848", "index": "67", "type": "numeric", "distinct": "72", "missing": "0", "min": "0", "max": "10607332", "mean": "91732", "stdev": "570281" }, { "name": "V860", "index": "68", "type": "numeric", "distinct": "13", "missing": "0", "min": "0", "max": "222976", "mean": "2123", "stdev": "17642" }, { "name": "V873", "index": "69", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "269303", "mean": "862", "stdev": "13351" }, { "name": "V888", "index": "70", "type": "numeric", "distinct": "79", "missing": "0", "min": "0", "max": "7177622", "mean": "74905", "stdev": "444692" }, { "name": "V947", "index": "71", "type": "numeric", "distinct": "62", "missing": "0", "min": "0", "max": "2867800", "mean": "64160", "stdev": "297208" }, { "name": "V952", "index": "72", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "288520", "mean": "537", "stdev": "12085" }, { "name": "V973", "index": "73", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "7190", "mean": "13", "stdev": "301" }, { "name": "V1020", "index": "74", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "3314", "mean": "6", "stdev": "139" }, { "name": "V1025", "index": "75", "type": "numeric", "distinct": "26", "missing": "0", "min": "0", "max": "37201160", "mean": "177220", "stdev": "1778959" }, { "name": "V1054", "index": "76", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1057", "index": "77", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "2173118", "mean": "25756", "stdev": "158713" }, { "name": "V1080", "index": "78", "type": "numeric", "distinct": "83", "missing": "0", "min": "0", "max": "53488992", "mean": "1347747", "stdev": "6009501" }, { "name": "V1092", "index": "79", "type": "numeric", "distinct": "72", "missing": "0", "min": "0", "max": "960350", "mean": "12197", "stdev": "66384" }, { "name": "V1099", "index": "80", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1118", "index": "81", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "6607571", "mean": "66881", "stdev": "451799" }, { "name": "V1125", "index": "82", "type": "numeric", "distinct": "91", "missing": "0", "min": "0", "max": "1057130", "mean": "18672", "stdev": "81838" }, { "name": "V1128", "index": "83", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "237338", "mean": "455", "stdev": "9975" }, { "name": "V1129", "index": "84", "type": "numeric", "distinct": "103", "missing": "0", "min": "0", "max": "49344028", "mean": "1319914", "stdev": "4948903" }, { "name": "V1153", "index": "85", "type": "numeric", "distinct": "37", "missing": "0", "min": "0", "max": "645783", "mean": "6864", "stdev": "44527" }, { "name": "V1163", "index": "86", "type": "numeric", "distinct": "204", "missing": "0", "min": "0", "max": "36734332", "mean": "2026262", "stdev": "5019615" }, { "name": "V1165", "index": "87", "type": "numeric", "distinct": "57", "missing": "0", "min": "0", "max": "13587012", "mean": "171357", "stdev": "967793" }, { "name": "V1169", "index": "88", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "20896556", "mean": "420619", "stdev": "1947550" }, { "name": "V1175", "index": "89", "type": "numeric", "distinct": "9", "missing": "0", "min": "0", "max": "844972", "mean": "2530", "stdev": "37180" }, { "name": "V1183", "index": "90", "type": "numeric", "distinct": "103", "missing": "0", "min": "0", "max": "1025594", "mean": "16016", "stdev": "71174" }, { "name": "V1189", "index": "91", "type": "numeric", "distinct": "17", "missing": "0", "min": "0", "max": "626794", "mean": "3675", "stdev": "37153" }, { "name": "V1227", "index": "92", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "6482680", "mean": "14914", "stdev": "273748" }, { "name": "V1235", "index": "93", "type": "numeric", "distinct": "76", "missing": "0", "min": "0", "max": "736674", "mean": "13423", "stdev": "64823" }, { "name": "V1236", "index": "94", "type": "numeric", "distinct": "5", "missing": "0", "min": "0", "max": "1507502", "mean": "4279", "stdev": "72526" }, { "name": "V1245", "index": "95", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1261", "index": "96", "type": "numeric", "distinct": "259", "missing": "0", "min": "0", "max": "35778532", "mean": "2882893", "stdev": "5639345" }, { "name": "V1266", "index": "97", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "1064702", "mean": "3925", "stdev": "49014" }, { "name": "V1270", "index": "98", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "9362734", "mean": "23099", "stdev": "405907" }, { "name": "V1284", "index": "99", "type": "numeric", "distinct": "20", "missing": "0", "min": "0", "max": "213234", "mean": "1840", "stdev": "14322" } ], "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 }