-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Really inefficient printing for large TimeArrays #514
Comments
related #428 |
Also if a TimeArray is a field of a struct the whole TimeArray is printed. Is there no summary view? |
Regarding large TimeArrays, I put the following code in my using TimeSeries
Base.show(io::IO, ::MIME"text/plain", ta::TimeArray) = if length(ta) > 6
println("Showing only the head of ", length(ta), " rows…")
show(io, head(ta))
else
show(io, ta)
end It's just my personal preference as I usually have many rows but relatively few columns. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The main source seems to be this line:
TimeSeries.jl/src/timearray.jl
Line 297 in 0356f4b
only a very small subset of
strs
is used later.The text was updated successfully, but these errors were encountered: