forked from IDEMSInternational/R-Instat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from africanmathsinitiative/master
Update master
- Loading branch information
Showing
105 changed files
with
6,454 additions
and
3,776 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
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
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,6 +1,8 @@ | ||
|
||
Public Enum OutputType | ||
Public Enum OutputType | ||
Script = 1 | ||
TextOutput = 2 | ||
ImageOutput = 4 | ||
End Enum | ||
HtmlOutput = 8 | ||
'the other reserved numbers are for for bitwise operations | ||
'todo. add the <Flags()> attribute? | ||
End Enum |
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,12 @@ | ||
''' <summary> | ||
''' represents display formats for R objects that are internally supported by R-Instat | ||
''' at both R and .Net level | ||
''' </summary> | ||
Public Structure RObjectFormat | ||
'------------------- | ||
'note an Enum would have been ideal, but VB.Net does not support String Enums | ||
'------------------ | ||
Public Const Image As String = "image" | ||
Public Const Text As String = "text" 'e.g objects of type "table" | ||
Public Const Html As String = "html" 'e.g objects of type "htmlwidget", "sjTable", "gt_tbl" | ||
End Structure |
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,17 @@ | ||
''' <summary> | ||
''' Represents R object types that are internally supported by R-Instat | ||
''' at both R and .Net level. | ||
''' They correspond to the object labels at R level | ||
''' </summary> | ||
Public Structure RObjectTypeLabel | ||
'------------------- | ||
'note an Enum would have been ideal, but VB.Net does not support String Enums | ||
'------------------ | ||
Public Const Dataframe As String = "dataframe" | ||
Public Const Column As String = "column" | ||
Public Const Graph As String = "graph" | ||
Public Const Table As String = "table" | ||
Public Const Model As String = "model" | ||
Public Const StructureLabel As String = "structure" ' e.g Survival objects | ||
Public Const Summary As String = "summary" ' e.g objects of text formats | ||
End Structure |
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
Oops, something went wrong.