I have a Julia array like this:
Any[Any[["link_1", "link_2", "link_3"], "82", ["A B", "C D", "E F", "G H", "I J"]]]
I want to convert this into a data frame with three columns: link, value, and array. However, I want to “explode” the values inside [“link_1”, “link_2”, “link_3”] (similar to pandas.DataFrame.explode) and construct a dataframe in Julia. I could do so in Python using the explode function in Pandas, but how do I achieve the same in Julia?