Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 8da13a8

Browse files
committed
Rel 1.0.2
1 parent 401e684 commit 8da13a8

File tree

7 files changed

+4
-105
lines changed

7 files changed

+4
-105
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "StructuralCausalModels"
22
uuid = "a41e6734-49ce-4065-8b83-aff084c01dfd"
33
authors = ["Rob J Goedman <[email protected]>"]
4-
version = "1.0.2"
4+
version = "1.0.3"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

old.appveyor.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

old.gitlab-ci.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

old.travis.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

test/test_graphviz_conversions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using StructuralCausalModels, Test
55
ProjDir = @__DIR__
66
cd(ProjDir) #do
77

8-
df = DataFrame!(CSV.File(scm_path("..", "data", "marks.csv")));
8+
df = CSV.read(scm_path("..", "data", "marks.csv"), DataFrame);
99

1010
#=
1111
R_dag = "

test/test_sr6_4_3.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using StructuralCausalModels
33
ProjDir = @__DIR__
44
cd(ProjDir) #do
55

6-
df = DataFrame!(CSV.File(scm_path("..", "data", "WaffleDivorce.csv"), delim=';'));
6+
df = CSV.read(scm_path("..", "data", "WaffleDivorce.csv"), DataFrame);
77
df = DataFrame(
88
:s => df[:, :South],
99
:a => df[:, :MedianAgeMarriage],

test/test_sr6_4_3b.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using StructuralCausalModels, Test
33
ProjDir = @__DIR__
44
cd(ProjDir)
55

6-
df = DataFrame!(CSV.File(scm_path("..", "data", "WaffleDivorce.csv"), delim=';'));
6+
df = CSV.read(scm_path("..", "data", "WaffleDivorce.csv"), DataFrame);
77
df = DataFrame(
88
:s => df[:, :South],
99
:a => df[:, :MedianAgeMarriage],

0 commit comments

Comments
 (0)