Update ref files for DataFrame tests

pull/52/head
Matti Pastell 2016-05-31 11:05:11 +02:00
parent a11c9eead0
commit f48b61c776
2 changed files with 16 additions and 16 deletions

View File

@ -10,9 +10,9 @@ df
~~~~
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -42,9 +42,9 @@ display(df)
~~~~
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -75,9 +75,9 @@ head(df)
~~~~
6x2 DataFrames.DataFrame
6×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -92,9 +92,9 @@ head(df)
~~~~{.julia}
julia> df
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │

View File

@ -8,9 +8,9 @@ df
\end{juliacode}
\begin{juliaout}
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -36,9 +36,9 @@ z = 51
display(df)
\end{juliacode}
\begin{juliaout}
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -65,9 +65,9 @@ display(df)
head(df)
\end{juliacode}
\begin{juliaout}
6x2 DataFrames.DataFrame
6×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │
@ -80,9 +80,9 @@ head(df)
\begin{juliaterm}
julia> df
26x2 DataFrames.DataFrame
26×2 DataFrames.DataFrame
│ Row │ letters │ numbers │
┝━━━━━┿━━━━━━━━━┿━━━━━━━━━┥
├─────┼─────────┼─────────┤
│ 1 │ 'a' │ 1 │
│ 2 │ 'b' │ 2 │
│ 3 │ 'c' │ 3 │