You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using JDF
using DataFrames
df = DataFrame(a=rand(3),b=rand(3),c=rand(3))
fi =raw"C:\temp\fi.jdf"
@time JDF.save(fi, df)
df = DataFrame(a=rand(3),b=rand(3))
@time JDF.save(fi, df)
#the jdf folder on disk will 'keep' the data for column c
#I wonder if this is intentional, or if 'c' should be cleaned up (i.e. deleted)
This seems like an oversight that should be improved.
What is your view?
The text was updated successfully, but these errors were encountered:
See example.
This seems like an oversight that should be improved.
What is your view?
The text was updated successfully, but these errors were encountered: