How to export data in CSV or Json? #178
-
Hi Everyone! When having a code snippet like below, running a pipeline, how to export the results in CSV or Json? Thank you in advance!
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @ViktorVarjas, All the returned values are Pandas Dataframes. So you can use all the Pandas native methods to export results. Have a look at this page for ways to export Pandas dataframes. Btw. If your input data structure is complex enough that you want to use a Custom Dataset, it might make sense to also include the data loading logic directly. See this example for options on how to handle custom data |
Beta Was this translation helpful? Give feedback.
Hi @ViktorVarjas, All the returned values are Pandas Dataframes. So you can use all the Pandas native methods to export results. Have a look at this page for ways to export Pandas dataframes.
Btw. If your input data structure is complex enough that you want to use a Custom Dataset, it might make sense to also include the data loading logic directly. See this example for options on how to handle custom data