Skip to content

Commit c1f0b98

Browse files
committed
Updated compat
1 parent 4e02bf4 commit c1f0b98

File tree

2 files changed

+23
-20
lines changed

2 files changed

+23
-20
lines changed

docs/Project.toml

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,26 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2727
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
2828

2929
[compat]
30-
BSON = "0.2.6"
31-
BenchmarkTools = "0.5.0"
32-
CSV = "0.8.3"
33-
DataFrames = "0.22.5"
34-
DifferentialEquations = "6.16.0"
35-
Distributions = "0.24.12"
36-
Documenter = "0.26.1"
37-
DocumenterTools = "0.1.9"
38-
Flux = "0.11.6"
39-
GLPK = "0.14.6"
40-
GR = "0.54.0"
41-
Ipopt = "0.6.5"
42-
JuMP = "0.21.6"
43-
MLDatasets = "0.5.6"
44-
Plots = "1.10.3"
45-
ProgressMeter = "1.4.1"
46-
Query = "1.0.0"
47-
RDatasets = "0.7.4"
48-
StatsPlots = "0.14.18"
30+
BSON = "0.3"
31+
BenchmarkTools = "1.2"
32+
CSV = "0.8"
33+
DataFrames = "1.2"
34+
DifferentialEquations = "6.19"
35+
Distributions = "0.25"
36+
Documenter = "0.27"
37+
DocumenterTools = "0.1"
38+
Flux = "~0.11"
39+
GLM = "1.5"
40+
GLPK = "0.14"
41+
GR = "0.59"
42+
HypothesisTests = "0.10"
43+
Ipopt = "0.7"
44+
JuMP = "0.21"
45+
MLDatasets = "= 0.5.6"
46+
Plots = "1.22"
47+
ProgressMeter = "1.7"
48+
Query = "1.0"
49+
RDatasets = "0.7"
50+
SpecialFunctions = "1.6"
51+
StatsPlots = "0.14"
4952
julia = "1.6"

docs/src/lecture_10/exercises.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ To create the dataframe, we use ```df = DataFrame(errors)```. It prints correctl
258258
```@example gpuu
259259
using DataFrames
260260
261-
df = DataFrame(errors)
261+
df = DataFrame(errors, :auto)
262262
263263
rename!(df, [Symbol("miss$(i)") for i in 0:9])
264264
insertcols!(df, 1, :label => string.(0:9))

0 commit comments

Comments
 (0)