# Case 1: store and retrieve series, OK? open data4-1 bundle b series b.x = sqft open data9-7 --preserve series x = b.x print x --byobs # Case 2: store and retrieve series: gives an error, # but the data can be retrieved in matrix form open data9-7 bundle b series b.x = QNC open data4-1 --preserve catch series x = b.x # wrong, won't fit! if $error matrix mx = b.x print mx else print x endif # Case 3: store and retrieve list: gives an error, # but the ID numbers in the list can be retrieved # as a row vector open data9-7 list L = PRIME UNEMP STOCK bundle b list b.L = L open data4-1 --preserve catch list L = b.L if $error matrix mL = b.L print mL # prints "4 5 6" endif