From 868ea11a95829c59baec5b0a0439fc55b7d68ac5 Mon Sep 17 00:00:00 2001 From: Anthony Costarelli Date: Mon, 27 Apr 2026 18:21:17 -0600 Subject: [PATCH] fix ambiguity --- src/utils/jump_utils.jl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/utils/jump_utils.jl b/src/utils/jump_utils.jl index a87ab5d..570b9b2 100644 --- a/src/utils/jump_utils.jl +++ b/src/utils/jump_utils.jl @@ -428,6 +428,18 @@ function to_outputs_dataframe( ) end +function to_outputs_dataframe( + array::DenseAxisArray{ + Float64, + 3, + <:Tuple{Vector{String}, Vector{String}, UnitRange{Int}}, + }, + ::Nothing, + ::Val{TableFormat.LONG}, +) + return to_outputs_dataframe(array, nothing, TableFormat.LONG) +end + function to_dataframe(array::SparseAxisArray{T, N, K}) where {T, N, K <: NTuple{N, Any}} columns = get_column_names_from_axis_array(array) return DataFrames.DataFrame(_to_matrix(array, columns), columns)