If you call http://api.conceptnet.io/r/PartOf and follow all of the nextPage responses, you end up getting about 1320 relationships. If you count each unique concept referenced in the start and end properties of these relationships, then look at which letters these concepts start with (throwing away 'a ' and 'an ' prefixes), you get this:
"1": 13,
"2": 11,
"4": 1,
"7": 1,
"9": 1,
"b": 352,
"t": 67,
"w": 24,
"a": 720,
"m": 63,
"n": 42,
"s": 69,
"g": 43,
"d": 24,
"i": 25,
"h": 39,
"k": 25,
"j": 17,
"o": 17,
"r": 24,
"p": 59,
"e": 46,
"u": 17,
"v": 15,
"c": 75,
"f": 39,
"l": 44,
"y": 4,
"q": 3,
"z": 7,
"о": 1,
"а": 1,
"č": 1,
"ö": 1,
"δ": 6,
"χ": 2,
"π": 1,
"x": 2,
".": 1,
"å": 1
}
That's a lot of a- and b- concepts! If you query the relationship endpoint with AtLocation, you end up with something similarly skewed:
"0": 1,
"1": 3,
"2": 1,
"3": 4,
"4": 1,
"5": 1,
"6": 1,
"7": 2,
"a": 510,
"t": 283,
"z": 4,
"y": 30,
"h": 54,
"b": 453,
"m": 101,
"c": 117,
"r": 48,
"s": 151,
"w": 42,
"f": 66,
"p": 79,
"g": 29,
"k": 12,
"o": 33,
"d": 36,
"j": 10,
"i": 30,
"l": 43,
"#": 1,
"n": 50,
"v": 14,
"u": 13,
"e": 21,
" ": 1,
"q": 4,
"ø": 1
}
Is this because there is an issue with paging stopping early? Or is there an issue with the data?
If you call
http://api.conceptnet.io/r/PartOfand follow all of thenextPageresponses, you end up getting about 1320 relationships. If you count each unique concept referenced in thestartandendproperties of these relationships, then look at which letters these concepts start with (throwing away 'a ' and 'an ' prefixes), you get this:That's a lot of a- and b- concepts! If you query the relationship endpoint with
AtLocation, you end up with something similarly skewed:Is this because there is an issue with paging stopping early? Or is there an issue with the data?