Hello,
I have recently started working with graph-tool, and was wondering if we can try to view any of the data provided in the repo as a pandas Dataframe? This would be helpful, because I would like to analyze a few things with a custom dataset.
For example, gt.collection.data["celegansneural"], can it be displayed as a dataframe? Or any other way?
I would like to see the all the content in it.
Warm regards, Rachit Saluja
Am 30.07.2018 um 15:36 schrieb Rachit Saluja:
Hello,
I have recently started working with graph-tool, and was wondering if we can try to view any of the data provided in the repo as a pandas Dataframe? This would be helpful, because I would like to analyze a few things with a custom dataset.
For example, gt.collection.data["celegansneural"], can it be displayed as a dataframe? Or any other way?
I would like to see the all the content in it.
Pandas is not used for the internal representation, so you cannot "view" it as a Dataframe. You have to use the documented API to access it (which is more appropriate than using Pandas).
Best, Tiago