:kedro: Hi Everyone! :kedro: Quick question: In on...
# questions
j
K Hi Everyone! K Quick question: In one of my nodes I have a function
f
that takes a dataframe as input, makes some stuff and output a python
dict
.
Is there any way to save that dict in the data catalog? . as a workaround I was saving it as a pandas csv and later transforming it back to a dict. but I'm tired of doing that. Thanks in advance 😄
w
Maybe a using Pickle dataset?
👍 1
j
hey good idea!
it worked!!! thanks a lot 🦜
👍 1
d
Also, you don't have to persist everything. If you don't need to save a dictionary to disk, you can just leave it as a MemoryDataSet.
☝️ 2