I have several numpy arrays of different sizes and want to store them in a single csv file. When i try and do it using the following code
df = pd.DataFrame.from_dict({"Title" : titles_ht, "Authorname" : authorname_ht, "Article" : article_ht, "Summary" : shortsummary_ht, "Tags" : tags_ht})
df.to_csv("HT.csv", index=False)
i get an error saying that the arrays are of uneven size.
How do i create a csv file with each of these uneven arrays.