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

+14
-0
lines changed

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',

visualpython/js/m_visualize/Chart.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ define([
3535
this.config.dataview = false;
3636
this.config.sizeLevel = 2;
3737
this.config.checkModules = ['plt'];
38+
this.config.docs = 'https://matplotlib.org/stable/';
3839

3940
this.setDefaultVariables();
4041
this.state = {

visualpython/js/m_visualize/Plotly.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ define([
3434
this.config.importButton = true;
3535
this.config.dataview = false;
3636
this.config.checkModules = ['px'];
37+
this.config.docs = 'https://plotly.com/python-api-reference/index.html';
3738

3839
this.state = {
3940
chartType: 'scatter',

visualpython/js/m_visualize/Seaborn.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
this.config.dataview = false;
3333
this.config.size = { width: 1064, height: 550 };
3434
this.config.checkModules = ['plt', 'sns'];
35+
this.config.docs = 'https://seaborn.pydata.org/index.html';
3536

3637
this.state = {
3738
chartType: 'scatterplot',

visualpython/js/m_visualize/WordCloud.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define([
3232
this.config.importButton = true;
3333
this.config.dataview = false;
3434
this.config.checkModules = ['Counter', 'plt', 'WordCloud'];
35+
this.config.docs = 'https://amueller.github.io/word_cloud/references.html';
3536

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

0 commit comments

Comments
 (0)