0

Is there a way to unconvert a zipline object that was converted to a string or to find the string object in Fundamentals.columns and return the value.

This is the original type class zipline.pipeline.data.dataset.BoundColumn

Since it is in a frozen set I had to convert to string in a list to get sometype of order

for x in Fundamentals.columns:
    l.append(str(x))

l.sort()

for x in l[:5]:
     print(x)    #how do I 
IMParasharG
  • 1,869
  • 1
  • 15
  • 26
J.J.
  • 75
  • 8
  • @MikeScotty the original list is a frozen set with no sort attributes – J.J. Jan 22 '19 at 16:25
  • @MikeScotty Can you explain how the 2 problems are similar ??? – J.J. Jan 23 '19 at 17:41
  • I was assuming that BoundColumn is an object with attributes. Since you're saying it's a frozen set and thus has no sortable attributes, the linked question and the answers don't apply. I will delete the previous comment. – Mike Scotty Jan 23 '19 at 20:38

0 Answers0