-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bryan A. Knowles
committed
Apr 23, 2020
1 parent
7f88644
commit 6598252
Showing
8 changed files
with
4,565 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# EpistemicNetworkAnalysis.jl | ||
|
||
A port of [rENA](https://rdrr.io/cran/rENA/), by [http://www.epistemicnetwork.org/](http://www.epistemicnetwork.org/). | ||
A port of [rENA](https://rdrr.io/cran/rENA/) version 0.2.0.1 into native Julia. | ||
|
||
Original R package by [http://www.epistemicnetwork.org/](http://www.epistemicnetwork.org/). | ||
|
||
IN DEVELOPMENT |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# TODO text representation | ||
# TODO graphical representation, default | ||
# TODO graphical, with options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
function ena_dataset(name::String) | ||
filename = joinpath(dirname(@__FILE__), "..", "data", "$(name).csv") | ||
return CSV.read(filename) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# TODO svd | ||
# TODO ac-svd | ||
# TODO mr1 | ||
# TODO mmr1 | ||
# TODO different plot options | ||
|
||
function temp_example() | ||
RSdata = ena_dataset("RS.data") | ||
print(first(RSdata, 6)) | ||
|
||
codes = [:Technical_Constraints, :Performance_Parameters, :Client_and_Consultant_Requests, :Design_Reasoning, :Collaboration] | ||
conversations = [:GroupName, :ActivityNumber] | ||
unitVar = :UserName | ||
|
||
myENA = ENAModel(RSdata, codes, conversations, unitVar) | ||
print(myENA.unitModel) | ||
print(myENA.networkModel) | ||
end |