[julia-users] ERROR: no method display(DataFrame) in display at multimedia.jl:158

2014-02-27 Thread Dan B
Friends, Any idea on how I can resolve this error that Im seeing while trying to show the contents of a DataFrame? julia> head(results) 6x9 DataFrame Evaluation succeeded, but an error occurred while showing value of type DataFrame: ERROR: no method display(DataFrame) in display at multime

Re: [julia-users] Error: no method display(DataFrame)

2014-01-23 Thread Jacob Quinn
Sounds like this also might be a version issue. Can you confirm what versions of Julia, DataFrames, and ODBC you're using? And just for kicks, what frontend are you using? (e.g. IJulia, terminal, etc) On Thu, Jan 23, 2014 at 11:24 AM, John Myles White wrote: > Since you’re hitting display e

Re: [julia-users] Error: no method display(DataFrame)

2014-01-23 Thread John Myles White
Since you’re hitting display errors I think this is a bug in DataFrames.jl. But I’m not totally sure. It would be super helpful if you could find an error case that doesn’t depend on ODBC. — John On Jan 23, 2014, at 8:22 AM, bp2012 wrote: > I'm using ODBC and DataFrames to query a database a

[julia-users] Error: no method display(DataFrame)

2014-01-23 Thread bp2012
I'm using ODBC and DataFrames to query a database and just started getting this error on a query return: df = query("select * from tb1") ERROR: no method display(DataFrame) in display at multimedia.jl:159 df is populated correctly, but the error halts the running of my code. Pointing a new D