Compare commits
2 commits
10357d86ca
...
b5200c5a8a
Author | SHA1 | Date | |
---|---|---|---|
b5200c5a8a | |||
c560041d82 |
3 changed files with 1 additions and 9 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
julia_version = "1.10.5"
|
julia_version = "1.10.5"
|
||||||
manifest_format = "2.0"
|
manifest_format = "2.0"
|
||||||
project_hash = "2fa745387593e623f1f0981fb03a0365b52a606c"
|
project_hash = "7e38425d15a28e7abd87534dcfc793c08d63a4f4"
|
||||||
|
|
||||||
[[deps.Artifacts]]
|
[[deps.Artifacts]]
|
||||||
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
|
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
|
||||||
|
@ -138,12 +138,6 @@ version = "1.2.0"
|
||||||
[[deps.Mmap]]
|
[[deps.Mmap]]
|
||||||
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
|
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
|
||||||
|
|
||||||
[[deps.Mustache]]
|
|
||||||
deps = ["Printf", "Tables"]
|
|
||||||
git-tree-sha1 = "3b2db451a872b20519ebb0cec759d3d81a1c6bcb"
|
|
||||||
uuid = "ffc61752-8dc7-55ee-8c37-f3e9cdd09e70"
|
|
||||||
version = "1.0.20"
|
|
||||||
|
|
||||||
[[deps.OpenBLAS_jll]]
|
[[deps.OpenBLAS_jll]]
|
||||||
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"]
|
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Libdl"]
|
||||||
uuid = "4536629a-c528-5b80-bd46-f80d51c5b363"
|
uuid = "4536629a-c528-5b80-bd46-f80d51c5b363"
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
[deps]
|
[deps]
|
||||||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
|
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
|
||||||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
||||||
Mustache = "ffc61752-8dc7-55ee-8c37-f3e9cdd09e70"
|
|
||||||
|
|
1
main.jl
1
main.jl
|
@ -1,7 +1,6 @@
|
||||||
#!/usr/bin/env julia
|
#!/usr/bin/env julia
|
||||||
using CSV
|
using CSV
|
||||||
using DataFrames
|
using DataFrames
|
||||||
using Mustache
|
|
||||||
|
|
||||||
# Import data
|
# Import data
|
||||||
survey_data = DataFrame(CSV.File("data.tsv"; delim='\t', normalizenames=true))
|
survey_data = DataFrame(CSV.File("data.tsv"; delim='\t', normalizenames=true))
|
||||||
|
|
Loading…
Reference in a new issue