Closed Flix6x closed 3 years ago
Name is lost when copying BeliefsSeries.
import timely_beliefs as tb s = tb.examples.example_df["event_value"] name = s.name print(name == s.copy().name) # False, expected True
Also, metadata is lost.
s.copy().sensor # AttributeError: 'BeliefsSeries' object has no attribute 'sensor'
Actually, the metadata issue was just caused by a local change. But we'll now test for it anyways.
Name is lost when copying BeliefsSeries.
Also, metadata is lost.