Skip to content

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Aug 31, 2018
1 parent b874647 commit df4c887
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 11_performance.ipynb
Expand Up @@ -144,7 +144,7 @@
"source": [
"# solution 2 is to provide the types of extracted columns\n",
"# it is simpler but there are cases in which you will not know these types\n",
"# This example assumes patch https://github.com/JuliaData/DataFrames.jl/pull/1493 is merged\n",
"# This example assumes that you have DataFrames master at least from August 31, 2018\n",
"function f_typed()\n",
" Random.seed!(1); x = DataFrame(rand(1000000,2))\n",
" y::Vector{Float64}, z::Vector{Float64} = x[1], x[2]\n",
Expand Down Expand Up @@ -180,7 +180,7 @@
}
],
"source": [
"# This example assumes patch https://github.com/JuliaData/DataFrames.jl/pull/1493 is merged\n",
"# This example assumes that you have DataFrames master at least from August 31, 2018\n",
"function f1()\n",
" x = DataFrame(Float64, 10^4, 100) # we work with DataFrame directly\n",
" for c in 1:ncol(x)\n",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@
**The tutorial works with Julia 1.0, except for section on FreqTables which is commented out till this package is upgraded. A major change is moving from JLD to JLD2 package.**

A brief introduction to basic usage of [DataFrames](https://github.com/JuliaData/DataFrames.jl).
Tested under Julia 1.0.0, DataFrames 0.13.1 (assumes patch https://github.com/JuliaData/DataFrames.jl/pull/1493 is merged), CSV 0.3.1, JLD2 0.1.1 (works under Julia 1.0 with patch https://github.com/simonster/JLD2.jl/pull/106), FileIO 1.0.1, CategoricalArrays 0.3.13, FreqTables 0.2.2 (not working under Julia 1.0 yet), DataFramesMeta 0.4.0, StatPlots 0.8.0+ (at least master for August 29, 2018 required). Also package `BencmarkTools` is used as a utility.
Tested under Julia 1.0.0, DataFrames 0.13.1 (at least master for August 31, 2018 required), CSV 0.3.1, JLD2 0.1.1 (works under Julia 1.0 with patch https://github.com/simonster/JLD2.jl/pull/106), FileIO 1.0.1, CategoricalArrays 0.3.13, FreqTables 0.2.2 (not working under Julia 1.0 yet), DataFramesMeta 0.4.0, StatPlots 0.8.0+ (at least master for August 29, 2018 required). Also package `BencmarkTools` is used as a utility.

I will try to keep it up to date as the package evolves.
This tutorial covers
Expand Down

0 comments on commit df4c887

Please sign in to comment.