I need to create an empty DataFrame with an specific shape for example [10,10] to store data from other source.
In pandas is straightforward:
pd.DataFrame(np.nan, index=range(10), columns=range(10))
But in ruby using daru, I'm not sure how to do that.
Related Question: pandas Dataframe