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 2.4.8#239

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 25 commits intovisualpython:devopsfromminjk-bl:devops
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
25 commits
Select commitHold shift + click to select a range
c4f6837
Add prev, next and fit_predict, fit_transform to pipeline, Add return…
Aug 30, 2023
1aa5cf8
Add scoring option to GridSearch
Aug 30, 2023
d3434e9
Edit SaveLoad to show model types for target and Fixed labels
Aug 30, 2023
d4e9c34
Edit Codeview, DataView not to save its content after hide
Aug 30, 2023
5fee352
Fix not to save app's state on task which is not intended
Aug 30, 2023
8f98b05
Add col_multi component to autoGen and apply it to by option in sort_…
Aug 30, 2023
6db2412
Fix not to add block by default
Aug 30, 2023
31b28a1
Add display() to evaluation
Aug 30, 2023
e93adcf
Fix PackageManager to load package after install or uninstall it
Aug 30, 2023
4844f88
Edit DataInfo to show simple value_counts code for single column
Aug 30, 2023
64585de
Fix task bluring, focusing popup issue on Popup
Aug 30, 2023
c83e8fb
Add helpviewer to include import codes
Aug 30, 2023
c42729b
Fix undefined code on DataPrep
Aug 30, 2023
fd51c78
Add ml mode to DataSelector
Aug 30, 2023
bc90d2b
Fix chart not to add to block by default
Aug 30, 2023
de1a802
Add more options to value_counts
Aug 30, 2023
39004db
Add statistics to Add Column menu on Frame app
Aug 30, 2023
0796673
Edit required import modules' key
Aug 30, 2023
cc09c3f
Edit ANOVA to show install button instead of force-insert install codes
Aug 30, 2023
cd676f0
Edit t-test group value's component
Aug 30, 2023
00353fa
Update ProbDist app's code and add HelpViewer
Aug 30, 2023
8f8e25a
style changes
Aug 30, 2023
b73e208
Add numeric_only to statistics on Frame app
Aug 30, 2023
915d53b
Edit Pipeline to apply default value to fit_predict and fit_transform
Aug 30, 2023
cbc5c33
Edit multinomial codes on ProbDist
Aug 30, 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
1 change: 1 addition & 0 deletionsvisualpython/css/m_ml/gridSearch.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -40,6 +40,7 @@
}
.vp-param-set-add {
cursor: pointer;
margin-bottom: 5px;
}
.vp-param-item > label {
align-self: center;
Expand Down
56 changes: 53 additions & 3 deletionsvisualpython/css/m_ml/pipeline.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@
}
.vp-pp-right-box {
display: grid;
grid-template-rows: 35px 10px calc(100% -45px);
grid-template-rows: 35px 10px calc(100% -80px) 35px;
padding-left: 5px;
overflow: auto;
}
Expand DownExpand Up@@ -45,7 +45,13 @@
position: absolute;
transition: all 0.5s ease-in-out;
}
.vp-pp-item:not(:last-child):before {
.vp-pp-item:last-child:before,
.vp-pp-item:last-child:after,
.vp-pp-item.vp-last-visible:before,
.vp-pp-item.vp-last-visible:after {
display: none;
}
.vp-pp-item:before {
border: 0.25px solid var(--vp-gray-color);
border-width: 0 4px 4px 0;
display: inline-block;
Expand All@@ -55,7 +61,7 @@
top: 47px;
left: 100px;
}
.vp-pp-item:not(:last-child):after {
.vp-pp-item:after {
border: 0.25px solid var(--vp-gray-color);
border-width: 0 4px 0 0;
height: 15px;
Expand DownExpand Up@@ -129,4 +135,48 @@
}
.vp-pp-step-content:empty::after {
content: 'Select the template and Follow the pipeline to generate simple ML code.'
}
.vp-pp-step-footer {
border-top: 0.25px solid var(--vp-border-gray-color);
width: 100%;
height: 35px;
}
.vp-pp-step-move-btn {
width: 70px;
height: 30px;
background-color: var(--vp-background-color);
border: 0.25px solid var(--vp-border-gray-color);
box-sizing: border-box;
box-shadow: 0.5px 0.5px 0.5px rgb(0 0 0 / 10%);
border-radius: 3px;
line-height: 30px;
vertical-align: middle;
font-family: 'AppleSDGothicNeo';
font-size: 13px;
text-align: center;
color: var(--vp-font-primary);
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

display: inline-block;
position: absolute;
bottom: 10px;
}
.vp-pp-step-move-btn:hover {
background-color: var(--vp-light-gray-color);
}
.vp-pp-step-move-btn.disabled {
background-color: var(--vp-gray-color);
cursor: not-allowed;
}
.vp-pp-step-prev {
left: 270px;
}
.vp-pp-step-next{
right: 15px;
}
41 changes: 38 additions & 3 deletionsvisualpython/data/m_library/pandasLibrary.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -1916,7 +1916,10 @@ define([
{
"name": "by",
"label": "Sort By",
"usePair": true
"usePair": true,
"component": [
"col_multi"
]
},
{
"name": "axis",
Expand DownExpand Up@@ -2437,7 +2440,7 @@ define([
"name": "get data counts",
"library": "pandas",
"description": "get data value counts",
"code": "${o0} = ${i0}.value_counts()",
"code": "${o0} = ${i0}.value_counts(${bins}${sort}${ascending}${dropna}${etc})",
"options": [
{
"name": "i0",
Expand All@@ -2454,7 +2457,39 @@ define([
"component": [
"input"
]
}
},
{
"name": "bins",
"component": [
"input_number"
],
"help": "Only for Series object",
"usePair": true,
},
{
"name": "sort",
"component": [
"bool_select"
],
"default": "True",
"usePair": true,
},
{
"name": "ascending",
"component": [
"bool_select"
],
"default": "False",
"usePair": true,
},
{
"name": "dropna",
"component": [
"bool_select"
],
"default": "True",
"usePair": true,
},
]
},
"pdIdt_info": {
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp