Skip to content

Commit 344be84

Browse files
committed
chore: add structured package data for math/base/special/logit
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent cad6845 commit 344be84

File tree

1 file changed

+76
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/logit

1 file changed

+76
-1
lines changed

lib/node_modules/@stdlib/math/base/special/logit/package.json

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,80 @@
6262
"logistic",
6363
"sigmoid",
6464
"special"
65-
]
65+
],
66+
"__stdlib__": {
67+
"scaffold": {
68+
"$schema": "math/[email protected]",
69+
"base_alias": "logit",
70+
"alias": "logit",
71+
"pkg_desc": "evaluate the logit function",
72+
"desc": "evaluates the logit function",
73+
"short_desc": "logit",
74+
"parameters": [
75+
{
76+
"name": "x",
77+
"desc": "input value",
78+
"type": {
79+
"javascript": "number",
80+
"jsdoc": "number",
81+
"c": "double",
82+
"dtype": "float64"
83+
},
84+
"domain": [
85+
{
86+
"min": 0,
87+
"max": 1
88+
}
89+
],
90+
"rand": {
91+
"prng": "random/base/uniform",
92+
"parameters": [
93+
0,
94+
1
95+
]
96+
},
97+
"example_values": [
98+
0.001,
99+
0.005,
100+
0.01,
101+
0.025,
102+
0.05,
103+
0.1,
104+
0.2,
105+
0.3,
106+
0.4,
107+
0.45,
108+
0.5,
109+
0.55,
110+
0.6,
111+
0.7,
112+
0.8,
113+
0.9,
114+
0.95,
115+
0.975,
116+
0.99,
117+
0.999
118+
]
119+
}
120+
],
121+
"output_policy": "real_floating_point_and_generic",
122+
"returns": {
123+
"desc": "logit",
124+
"type": {
125+
"javascript": "number",
126+
"jsdoc": "number",
127+
"c": "double",
128+
"dtype": "float64"
129+
}
130+
},
131+
"keywords": [
132+
"logit",
133+
"proportion",
134+
"log-odds",
135+
"logistic",
136+
"sigmoid"
137+
],
138+
"extra_keywords": []
139+
}
140+
}
66141
}

0 commit comments

Comments
 (0)