bashtage/linearmodels

Get error when using result.time_info.min() for PanelOLS

Paq70 opened this issue · 3 comments

Paq70 commented

Dear developers,

I get a wrong info when using result.time_info.min() for PanelOLS. It actually shows the same result as result.time_info.total, which doesn't mean any sense. Can somebody fix it?

@Paq70 because time_info is a Series, you can't use dot notation to access min. So don't use result.time_info.min, instead use result.time_info["min"].

Closing as answered, but please continue to post if this isn't enough to fix your issue.

Paq70 commented

Solved, thank you much @bashtage !!!