DataFrames.jl icon indicating copy to clipboard operation
DataFrames.jl copied to clipboard

resolve circular reference issue when printing

Open bkamins opened this issue 1 year ago • 0 comments

both text/plain and html

Example:

julia> df = DataFrame(a=Any[nothing])
1×1 DataFrame
 Row │ a
     │ Any
─────┼─────
   1 │

julia> df.a[1] = [df]
1-element Vector{DataFrame}:
Error showing value of type Vector{DataFrame}:
ERROR: StackOverflowError:

bkamins avatar Sep 13 '22 16:09 bkamins