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 #21 from africanmathsinitiative/master
merge from main
- Loading branch information
Showing
22 changed files
with
1,103 additions
and
101 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Public Class Distribution | ||
Public strNameTag As String | ||
Public strRFunctionName As String = "" | ||
Public strPFunctionName As String = "" | ||
Public strQFunctionName As String = "" | ||
Public strDFunctionName As String = "" | ||
Public strGLMFunctionName As String = "" | ||
Public clsParameters As New List(Of DistributionParameter) | ||
|
||
Public Sub SetNameTag(strTemp As String) | ||
strNameTag = strTemp | ||
End Sub | ||
|
||
Public Sub AddParameter(strArgumentName, strNameTag) | ||
Dim NewParameter As New DistributionParameter | ||
NewParameter.strArgumentName = strArgumentName | ||
NewParameter.strNameTag = strNameTag | ||
clsParameters.Add(NewParameter) | ||
End Sub | ||
End Class | ||
|
||
Public Class DistributionParameter | ||
Public strArgumentName As String | ||
Public strNameTag As String | ||
|
||
End Class |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.