Skip to content

Commit d2ce17f

Browse files
author
minjk-bl
committed
Add docs link to Visualization and Statistics
1 parent dfb199f commit d2ce17f

14 files changed

Lines changed: 14 additions & 0 deletions

visualpython/js/m_stats/Anova.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
/** Write codes executed before rendering */
3333
this.config.sizeLevel = 2;
3434
this.config.checkModules = ['pd', 'np', 'scipy.stats', 'vp_confidence_interval', 'vp_sem'];
35+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3536

3637
this.state = {
3738
testType: 'one-way',

visualpython/js/m_stats/Chi2test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
/** Write codes executed before rendering */
3333
this.config.sizeLevel = 2;
3434
this.config.checkModules = ['pd'];
35+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3536

3637
this.state = {
3738
data: '',

visualpython/js/m_stats/CorrAnalysis.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
/** Write codes executed before rendering */
3333
this.config.sizeLevel = 2;
3434
this.config.checkModules = ['pd'];
35+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3536

3637
this.state = {
3738
data: '',

visualpython/js/m_stats/EqualVarTest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define([
3333
/** Write codes executed before rendering */
3434
this.config.sizeLevel = 2;
3535
this.config.checkModules = ['pd'];
36+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3637

3738
this.state = {
3839
testType: 'bartlett',

visualpython/js/m_stats/FactorAnalysis.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define([
3333
this.config.sizeLevel = 2;
3434
this.config.checkModules = ['pd'];
3535
this.config.installButton = true;
36+
this.config.docs = 'https://factor-analyzer.readthedocs.io/en/latest/factor_analyzer.html';
3637

3738
this.state = {
3839
data: '',

visualpython/js/m_stats/LogisticRegression.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define([
3333
/** Write codes executed before rendering */
3434
this.config.sizeLevel = 2;
3535
this.config.checkModules = ['pd'];
36+
this.config.docs = 'https://www.statsmodels.org/stable/api.html';
3637

3738
this.state = {
3839
data: '',

visualpython/js/m_stats/NormTest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
/** Write codes executed before rendering */
3333
this.config.sizeLevel = 2;
3434
this.config.checkModules = ['pd'];
35+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3536

3637
this.state = {
3738
testType: 'shapiro-wilk',

visualpython/js/m_stats/ProbDist.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define([
3333
/** Write codes executed before rendering */
3434
this.config.sizeLevel = 2;
3535
this.config.checkModules = ['pd', 'plt'];
36+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3637

3738
this.state = {
3839
distType: 'normal',

visualpython/js/m_stats/Regression.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ define([
3434
/** Write codes executed before rendering */
3535
this.config.sizeLevel = 2;
3636
this.config.checkModules = ['pd'];
37+
this.config.docs = 'https://www.statsmodels.org/stable/api.html';
3738

3839
this.state = {
3940
testType: 'simple',

visualpython/js/m_stats/StudentstTest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define([
3333
/** Write codes executed before rendering */
3434
this.config.sizeLevel = 2;
3535
this.config.checkModules = ['pd'];
36+
this.config.docs = 'https://docs.scipy.org/doc/scipy/reference/';
3637

3738
this.state = {
3839
testType: 'one-sample',

0 commit comments

Comments
 (0)