{ "data_id": "44652", "name": "Internet-Advertisements_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "Internet-Advertisements_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "dbafecf3-d838-4024-98ca-7d5eb266fa17", "description": "Subsampling of the dataset Internet-Advertisements (40978) 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:40:15", "update_comment": null, "last_update": "2022-11-17 18:40:15", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111414\/dataset", "default_target_attribute": "class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "Internet-Advertisements_seed_4_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset Internet-Advertisements (40978) 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_classe " ], "weight": 5 }, "qualities": { "NumberOfInstances": 2000, "NumberOfFeatures": 101, "NumberOfClasses": 2, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 0, "NumberOfSymbolicFeatures": 101, "MinorityClassSize": 280, "NumberOfBinaryFeatures": 101, "PercentageOfBinaryFeatures": 100, "PercentageOfInstancesWithMissingValues": 0, "PercentageOfMissingValues": 0, "AutoCorrelation": 0.7518759379689844, "PercentageOfNumericFeatures": 0, "Dimensionality": 0.0505, "PercentageOfSymbolicFeatures": 100, "MajorityClassPercentage": 86, "MajorityClassSize": 1720, "MinorityClassPercentage": 14.000000000000002 }, "tags": [ { "uploader": "38960", "tag": "Machine Learning" }, { "uploader": "38960", "tag": "Statistics" } ], "features": [ { "name": "class", "index": "100", "type": "nominal", "distinct": "2", "missing": "0", "target": "1", "distr": [ [ "ad", "noad" ], [ [ "280", "0" ], [ "0", "1720" ] ] ] }, { "name": "url.pool.images", "index": "0", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "url.infoserver.etl.vt.edu", "index": "1", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "url.charlie", "index": "2", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1717" ], [ "0", "3" ] ] ] }, { "name": "url.derived", "index": "3", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1702" ], [ "0", "18" ] ] ] }, { "name": "url.home", "index": "4", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "274", "1696" ], [ "6", "24" ] ] ] }, { "name": "url.www.ran.org", "index": "5", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "url.sjsu.edu", "index": "6", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1705" ], [ "0", "15" ] ] ] }, { "name": "url.gra", "index": "7", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1715" ], [ "0", "5" ] ] ] }, { "name": "url.www.express.scripts.com", "index": "8", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "url.www.finest.tm.fr", "index": "9", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "url.users", "index": "10", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1714" ], [ "0", "6" ] ] ] }, { "name": "url.geoguideii.send", "index": "11", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1707" ], [ "0", "13" ] ] ] }, { "name": "url.w.gif", "index": "12", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1679" ], [ "0", "41" ] ] ] }, { "name": "url.aol.com", "index": "13", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1663" ], [ "1", "57" ] ] ] }, { "name": "url.ball", "index": "14", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1687" ], [ "0", "33" ] ] ] }, { "name": "url.logo.b", "index": "15", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "url.static.wired.com", "index": "16", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "269", "1720" ], [ "11", "0" ] ] ] }, { "name": "url.runofsite.any", "index": "17", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "272", "1720" ], [ "8", "0" ] ] ] }, { "name": "url.esi.image", "index": "18", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1714" ], [ "0", "6" ] ] ] }, { "name": "url.baons", "index": "19", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1709" ], [ "0", "11" ] ] ] }, { "name": "url.pool", "index": "20", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "url.top", "index": "21", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1711" ], [ "1", "9" ] ] ] }, { "name": "url.ran", "index": "22", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "url.sunsetstrip", "index": "23", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1705" ], [ "0", "15" ] ] ] }, { "name": "url.geoguideii", "index": "24", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1600" ], [ "0", "120" ] ] ] }, { "name": "origurl.alley", "index": "25", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1699" ], [ "1", "21" ] ] ] }, { "name": "origurl.pointe", "index": "26", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1696" ], [ "0", "24" ] ] ] }, { "name": "origurl.kattsida", "index": "27", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1702" ], [ "0", "18" ] ] ] }, { "name": "origurl.sunsite.unc.edu", "index": "28", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1705" ], [ "1", "15" ] ] ] }, { "name": "origurl.ubc.ca", "index": "29", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1715" ], [ "0", "5" ] ] ] }, { "name": "origurl.plato", "index": "30", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1715" ], [ "0", "5" ] ] ] }, { "name": "origurl.www.likesbooks.com", "index": "31", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1701" ], [ "0", "19" ] ] ] }, { "name": "origurl.vault.3440", "index": "32", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1712" ], [ "1", "8" ] ] ] }, { "name": "origurl.search", "index": "33", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "265", "1719" ], [ "15", "1" ] ] ] }, { "name": "origurl.biopic.htm", "index": "34", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "origurl.news", "index": "35", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "270", "1719" ], [ "10", "1" ] ] ] }, { "name": "origurl.larx.com", "index": "36", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1716" ], [ "0", "4" ] ] ] }, { "name": "origurl.paper.1998", "index": "37", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "273", "1720" ], [ "7", "0" ] ] ] }, { "name": "origurl.keith", "index": "38", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "278", "1707" ], [ "2", "13" ] ] ] }, { "name": "origurl.wosc", "index": "39", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1717" ], [ "0", "3" ] ] ] }, { "name": "origurl.mindlink.net", "index": "40", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1717" ], [ "0", "3" ] ] ] }, { "name": "origurl.kerouac.htm", "index": "41", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1707" ], [ "0", "13" ] ] ] }, { "name": "origurl.martnet.com", "index": "42", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "278", "1709" ], [ "2", "11" ] ] ] }, { "name": "origurl.msheryl", "index": "43", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1715" ], [ "0", "5" ] ] ] }, { "name": "origurl.vault", "index": "44", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1712" ], [ "1", "8" ] ] ] }, { "name": "origurl.polypkem.index", "index": "45", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "origurl.8078.home", "index": "46", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1706" ], [ "0", "14" ] ] ] }, { "name": "origurl.library.pitcairn", "index": "47", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "origurl.athens", "index": "48", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1687" ], [ "0", "33" ] ] ] }, { "name": "origurl.yosemite", "index": "49", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1709" ], [ "0", "11" ] ] ] }, { "name": "origurl.bordeaux.actup", "index": "50", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "origurl.www.wednet.com", "index": "51", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1712" ], [ "1", "8" ] ] ] }, { "name": "origurl.www.access.ch", "index": "52", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "origurl.www.express.scripts.com", "index": "53", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "origurl.arvann.pages", "index": "54", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1672" ], [ "0", "48" ] ] ] }, { "name": "origurl.football", "index": "55", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1715" ], [ "1", "5" ] ] ] }, { "name": "origurl.hollywood.9662", "index": "56", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1709" ], [ "0", "11" ] ] ] }, { "name": "origurl.truluck.com", "index": "57", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "origurl.6712.cats", "index": "58", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1715" ], [ "0", "5" ] ] ] }, { "name": "origurl.fr.bordeaux", "index": "59", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "ancurl.truluck.com", "index": "60", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "ancurl.home.htm", "index": "61", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "ancurl.csuhayward.edu", "index": "62", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1711" ], [ "0", "9" ] ] ] }, { "name": "ancurl.news", "index": "63", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "279", "1710" ], [ "1", "10" ] ] ] }, { "name": "ancurl.www.ibitexas.com", "index": "64", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1707" ], [ "0", "13" ] ] ] }, { "name": "ancurl.ng.spacedesc", "index": "65", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "270", "1720" ], [ "10", "0" ] ] ] }, { "name": "ancurl.yahoo", "index": "66", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "271", "1718" ], [ "9", "2" ] ] ] }, { "name": "ancurl.www.inwap.com", "index": "67", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1714" ], [ "0", "6" ] ] ] }, { "name": "ancurl.4.mem", "index": "68", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "276", "1720" ], [ "4", "0" ] ] ] }, { "name": "ancurl.links", "index": "69", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1706" ], [ "0", "14" ] ] ] }, { "name": "ancurl.exe", "index": "70", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "269", "1718" ], [ "11", "2" ] ] ] }, { "name": "ancurl.bin.acc", "index": "71", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "265", "1720" ], [ "15", "0" ] ] ] }, { "name": "ancurl.link.pics", "index": "72", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1709" ], [ "0", "11" ] ] ] }, { "name": "ancurl.ads.redirect", "index": "73", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "270", "1720" ], [ "10", "0" ] ] ] }, { "name": "ancurl.www.readersndex", "index": "74", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "ancurl.www.theinternetadvantage.com", "index": "75", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1710" ], [ "0", "10" ] ] ] }, { "name": "ancurl.art", "index": "76", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "ancurl.april.fools", "index": "77", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "ancurl.uk", "index": "78", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "264", "1718" ], [ "16", "2" ] ] ] }, { "name": "ancurl.st", "index": "79", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "270", "1720" ], [ "10", "0" ] ] ] }, { "name": "ancurl.www.2meta.com", "index": "80", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1707" ], [ "0", "13" ] ] ] }, { "name": "ancurl.midnight", "index": "81", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "ancurl.hotwired.com", "index": "82", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "265", "1720" ], [ "15", "0" ] ] ] }, { "name": "ancurl.mcet.edu", "index": "83", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1712" ], [ "0", "8" ] ] ] }, { "name": "ancurl.clawring", "index": "84", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1714" ], [ "0", "6" ] ] ] }, { "name": "ancurl.www.thejeep.com", "index": "85", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "278", "1716" ], [ "2", "4" ] ] ] }, { "name": "ancurl.services", "index": "86", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "ancurl.type.click", "index": "87", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "234", "1718" ], [ "46", "2" ] ] ] }, { "name": "alt.and", "index": "88", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "264", "1699" ], [ "16", "21" ] ] ] }, { "name": "alt.all", "index": "89", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "277", "1717" ], [ "3", "3" ] ] ] }, { "name": "alt.our", "index": "90", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "274", "1714" ], [ "6", "6" ] ] ] }, { "name": "alt.visit.our", "index": "91", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "274", "1720" ], [ "6", "0" ] ] ] }, { "name": "alt.romance", "index": "92", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "alt.new", "index": "93", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "275", "1712" ], [ "5", "8" ] ] ] }, { "name": "alt.amazon", "index": "94", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "277", "1715" ], [ "3", "5" ] ] ] }, { "name": "alt.home.page", "index": "95", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1708" ], [ "0", "12" ] ] ] }, { "name": "alt.my.guestbook", "index": "96", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1713" ], [ "0", "7" ] ] ] }, { "name": "alt.graphic", "index": "97", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "280", "1706" ], [ "0", "14" ] ] ] }, { "name": "caption.here.for", "index": "98", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "273", "1719" ], [ "7", "1" ] ] ] }, { "name": "caption.click", "index": "99", "type": "nominal", "distinct": "2", "missing": "0", "distr": [ [ "0", "1" ], [ [ "259", "1716" ], [ "21", "4" ] ] ] } ], "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 }