The .data(key)
method will return the associated value to that key on the collection.
var svg = Pablo(demoElement).svg({height: 100});
circle = Pablo.circle({id: 'special', cx: 50, cy: 50, r: 50});
circle.data('ying', 'yang').appendTo(svg);
alert(Pablo('#special').data('ying'));