Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Devops for Statistics packages#218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
minjk-bl merged 28 commits intovisualpython:devopsfromminjk-bl:devops
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
28 commits
Select commitHold shift + click to select a range
02eac43
#69 - Add new statistics menu
May 24, 2023
35aa8ae
Add general style for grid and flex
May 24, 2023
e449bb9
Add scipy module to the module check-list
May 24, 2023
7c503fd
Fix astype and dropna on Frame app
May 24, 2023
baec650
Add kurtosis on DataInfo
May 24, 2023
5d277b2
Edit Subset to allow usage on other apps
May 24, 2023
84896d2
Edit popupcomponent to add checkmodules using function
May 24, 2023
c30c54c
Add statistics apps
May 24, 2023
ae0441f
Add read_sas read_spss
May 24, 2023
c17d5f6
Edit File app to support installation of read_spss
May 24, 2023
41f363e
Edit probDist app
May 24, 2023
6e35bbb
change sample file column name
Jun 14, 2023
8cf099c
Add and implement Statistics package
Jun 14, 2023
a993c9d
Edit DataSelector to support without popup
Jun 14, 2023
ba2b46e
Edit MultiSelector to able to select show or hide note
Jun 14, 2023
6181e4d
Add radio vp style
Jun 14, 2023
2607504
Add radio and load state module
Jun 14, 2023
d0d7eb6
Edit SuggestInput to select autofocus
Jun 14, 2023
6089098
Edit auto-generated label to bold-style on required
Jun 14, 2023
7f92678
Edit pickle label to uppercase
Jun 14, 2023
3293ca0
Edit Studentsttest to wrap word
Jun 14, 2023
4b92465
Add returnType state to support Subset as a component
Jun 14, 2023
c8e783e
Fix Data Info to show more clear statistics
Jun 14, 2023
fc81f6a
Edit Frame to support fill and drop outlier, changed add, replace fun…
Jun 14, 2023
91987c5
Edit File app's label
Jun 14, 2023
77662ab
Fix Snippets title click operation
Jun 14, 2023
88514cb
Add package manager button
Jun 14, 2023
cb48069
Fix CorrAnalysis code
Jun 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletionsvisualpython/css/component/dataSelector.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
/* DataSelector target*/
.vp-ds-box {
display: inline-block;
display: inline-flex;
}
.vp-ds-filter {
position: relative;
/* width: 20px;
height: 20px; */
right:25px;
right:20px;
cursor: pointer;
/* LAB: img to background-image */
display: inline-block;
background: center/ contain no-repeat url(../../img/filter.svg);
width:12px;
height:12px;
top:9px;
}
.vp-ds-boxinput.vp-ds-target {
padding-right:23px;
Expand Down
2 changes: 1 addition & 1 deletionvisualpython/css/component/multiSelector.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,7 @@
grid-template-columns:calc(47%-15px)50pxcalc(47%-15px);
grid-auto-rows:100%;
}
.vp-cs-select-search {
.vp-cs-select-containerinput.vp-cs-select-search {
width:100%;
}
.vp-cs-select-search::after {
Expand Down
58 changes: 53 additions & 5 deletionsvisualpython/css/component/popupComponent.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -274,7 +274,8 @@
padding:1px8px05px;
}
/* checkbox */
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox) {
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox),
.vp-popup-frameinput[type=radio]:not(.vp-radio) {
position: absolute;
width:1px;
height:1px;
Expand All@@ -285,7 +286,9 @@
border:0;
}
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox)+label,
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox)+span {
.vp-popup-frameinput[type=radio]:not(.vp-radio)+label,
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox)+span,
.vp-popup-framelabelinput[type=radio]:not(.vp-radio)+span {
display: inline-block;
position: relative;
padding-left:20px;
Expand All@@ -295,7 +298,9 @@
vertical-align: middle;
}
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox):disabled+label,
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox):disabled+span {
.vp-popup-frameinput[type=radio]:not(.vp-radio):disabled+label,
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox):disabled+span,
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):disabled+span {
color:var(--vp-gray-color);
}
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox)+label::before,
Expand All@@ -322,7 +327,7 @@
width:15px;
height:15px;
background: url(../../img/checkbox_checked.svg);
background-size:14px14px;
background-size:15px15px;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
Expand All@@ -336,7 +341,50 @@
width:15px;
height:15px;
background: url(../../img/checkbox_unchecked.svg);
background-size:14px14px;
background-size:15px15px;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
}
.vp-popup-frameinput[type=radio]:not(.vp-radio)+label::before,
.vp-popup-framelabelinput[type=radio]:not(.vp-radio)+span::before {
content:'';
position: absolute;
left:0;
top:0;
width:15px;
height:15px;
text-align: center;
background: url(../../img/radio_unchecked.svg);
background-size:15px15px;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
}
.vp-popup-frameinput[type=radio]:not(.vp-radio):checked+label::before,
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):checked+span::before {
content:'';
position: absolute;
left:0;
top:0;
width:15px;
height:15px;
background: url(../../img/radio_checked.svg);
background-size:15px15px;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
}
.vp-popup-frameinput[type=radio]:not(.vp-radio):disabled+label::before,
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):disabled+span::before {
content:'';
position: absolute;
left:0;
top:0;
width:15px;
height:15px;
background: url(../../img/radio_unchecked.svg);
background-size:15px15px;
background-repeat: no-repeat;
border: none;
box-sizing: border-box;
Expand Down
5 changes: 4 additions & 1 deletionvisualpython/css/m_apps/frame.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -256,6 +256,10 @@
.vp-inner-popup-addtype {
width:153px;
}
.vp-inner-popup-condition-use-text {
position: sticky;
left:190px;
}
.vp-inner-popup-delete-value {
display: inline-block;
cursor: pointer;
Expand DownExpand Up@@ -294,7 +298,6 @@
.vp-inner-popup-sortby-down {
float: right;
display: inline-block;

}

/* UDF Editor - CodeMirror */
Expand Down
36 changes: 36 additions & 0 deletionsvisualpython/css/m_stats/descStats.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : descStats.css
* Author : Black Logic
* Note : stylesheet for descStats.html
* License : GNU GPLv3 with Visual Python special exception
* Date : 2023. 05. 31
* Change Date :
*/
.vp-percentile-box {
width:300px;
height:100px;
border:0.25px solidvar(--vp-border-gray-color);
padding:05px;
}
.vp-percentile-item {
height:30px;
width:100%;
border-bottom:0.25px solidvar(--vp-border-gray-color);
padding:010px;
line-height:30px;
display: flex;
column-gap:5px;
align-items: center;
}
.vp-percentile-value {
width:95%;
}
.vp-percentile-box:not(.disabled) .vp-percentile-remove {
cursor: pointer;
}
.vp-percentile-box.disabled {
background-color:var(--vp-light-gray-color);
cursor: not-allowed;
}
View file
Open in desktop
Empty file.
17 changes: 17 additions & 0 deletionsvisualpython/css/m_stats/regression.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
/*
* Project Name : Visual Python
* Description : GUI-based Python code generator
* File Name : regression.css
* Author : Black Logic
* Note : stylesheet for regression.html
* License : GNU GPLv3 with Visual Python special exception
* Date : 2023. 05. 31
* Change Date :
*/
.vp-categorical-box {
display: grid;
grid-template-columns:repeat(2,1fr);
border:0.25px solidvar(--vp-border-gray-color);
padding:5px;
min-height:30px;
}
53 changes: 44 additions & 9 deletionsvisualpython/css/menuFrame.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,6 +27,19 @@
background-color:var(--vp-background-color);
border-bottom:1px solidvar(--vp-border-gray-color);
}
.vp-package-manager {
/* display: inline-flex; */
display: none;
float: right;
position: relative;
font-size:18px;
font-weight: bold;
color:var(--vp-highlight-color);
margin:8px6px8px3px;
cursor: pointer;
width:18px;
height:18px;
}
.vp-version-updater {
display: none;
float: right;
Expand DownExpand Up@@ -82,14 +95,12 @@ input.vp-menu-search-box {
.vp-menu-search-icon {
width:20px;
height:20px;
position: relative;
right:30px;
top:6px;
/* LAB: img to background-image */
position: absolute;
right:45px;
top:15px;
background-image: url(../img/search.svg);
background-repeat: no-repeat;
background-size: contain;
height:100%;
}
/* LAB: img to background-image */
#vp_wrapper.lab .vp-menu-search-icon {
Expand DownExpand Up@@ -428,16 +439,40 @@ input.vp-menu-search-box {
}
/* statistics */
.vp-menuitem.apps .stats_probDist {
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
background: top/ contain no-repeat url(../img/apps/apps_probDist.svg);
}
.vp-menuitem.apps .stats_descStats {
background: top/ contain no-repeat url(../img/apps/apps_descStats.svg);
}
.vp-menuitem.apps .stats_normTest {
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
background: top/ contain no-repeat url(../img/apps/apps_probDist.svg);
}
.vp-menuitem.apps .stats_equalVarTest {
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
background: top/ contain no-repeat url(../img/apps/apps_equalVarTest.svg);
}
.vp-menuitem.apps .stats_corrAnalysis {
background: top/ contain no-repeat url(../img/apps/apps_corrAnalysis.svg);
}
.vp-menuitem.apps .stats_reliabAnalysis {
background: top/ contain no-repeat url(../img/apps/apps_corrAnalysis.svg);
}
.vp-menuitem.apps .stats_chi2test {
background: top/ contain no-repeat url(../img/apps/apps_chi2test.svg);
}
.vp-menuitem.apps .stats_studentstTest {
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
background: top/ contain no-repeat url(../img/apps/apps_studentstTest.svg);
}
.vp-menuitem.apps .stats_anova {
background: top/ contain no-repeat url(../img/apps/apps_anova.svg);
}
.vp-menuitem.apps .stats_factorAnalysis {
background: top/ contain no-repeat url(../img/apps/apps_factorAnalysis.svg);
}
.vp-menuitem.apps .stats_regression {
background: top/ contain no-repeat url(../img/apps/apps_regression.svg);
}
.vp-menuitem.apps .stats_logisticRegression {
background: top/ contain no-repeat url(../img/apps/apps_logisticRegression.svg);
}
/* machine learning */
.vp-menuitem.apps .ml_dataSet {
Expand Down
40 changes: 39 additions & 1 deletionvisualpython/css/root.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -96,6 +96,11 @@ select.vp-select:disabled {

/* image icons */
/* LAB: img to background-image */
.vp-icon-setting {
background: center/ contain no-repeat url(../img/setting.svg);
width:100%;
height:100%;
}
.vp-icon-refresh {
background: top/ contain no-repeat url(../img/refresh.svg);
height:100%;
Expand DownExpand Up@@ -483,7 +488,13 @@ button.vp-button {
hr.vp-extra-menu-line {
margin:5px0px7px0px;
}
/* width style*/
/* height style */
#vp_wrapper .h150,
.vp-popup-frame .h150,
.vp-inner-popup-body .h150 {
height:150px!important;
}
/* width style */
#vp_wrapper .wp100,
.vp-popup-frame .wp100,
.vp-inner-popup-body .wp100 {
Expand DownExpand Up@@ -564,6 +575,18 @@ hr.vp-extra-menu-line {
.vp-inline-block {
display: inline-block!important;
}
/* Flex */
.vp-flex-box {
display: flex;
}
.vp-flex-gap5 {
display: flex;
gap:5px;
}
.vp-flex-gap10 {
display: flex;
gap:10px;
}
/* Grid style */
.vp-grid-box {
display: grid;
Expand DownExpand Up@@ -607,13 +630,28 @@ hr.vp-extra-menu-line {
align-items: baseline;
align-content: space-evenly;
}
.vp-grid-col-120 {
display: grid;
grid-template-columns:120px auto;
grid-row-gap:5px;
align-items: baseline;
align-content: space-evenly;
}
.vp-grid-col-130 {
display: grid;
grid-template-columns:130px auto;
grid-row-gap:5px;
align-items: baseline;
align-content: space-evenly;
}
.vp-grid-col-160 {
display: grid;
grid-template-columns:160px auto;
grid-row-gap:5px;
/* align-items: baseline; */
align-items: start;
align-content: space-evenly;
}
/* Table style */
.vp-tbl-gap5 {
border-spacing:5px;
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp