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

Release v2.4.8#240

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 27 commits intomainfromrelease
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
27 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
79d38f1
Merge pull request #239 from minjk-bl/devops
minjk-blAug 30, 2023
39a0a01
deploy visualpython 2.4.8
visualpythonAug 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
4 changes: 2 additions & 2 deletionsbuild.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Set version and replace it
#=============================================================================
VP_ORG_VER=2.4.6
VP_NEW_VER=2.4.7
VP_ORG_VER=2.4.7
VP_NEW_VER=2.4.8

# update version info
grep -REil "VP_ORG_VER=.+$" colab/build.colab.sh jupyterlab/build.jupyterlab.sh jupyternotebook/build.jupyternotebook.sh | xargs sed -i "s/VP_ORG_VER=.\+$/VP_ORG_VER=${VP_ORG_VER}/g"
Expand Down
4 changes: 2 additions & 2 deletionscolab/build.colab.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version
#=============================================================================
VP_ORG_VER=2.4.6
VP_NEW_VER=2.4.7
VP_ORG_VER=2.4.7
VP_NEW_VER=2.4.8

# update version info
# update manifest version with new numbering for new version
Expand Down
2 changes: 1 addition & 1 deletioncolab/manifest.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
{
"name": "Visual Python for Colab",
"description": "GUI-based Python code generator for Google Colab as an extension",
"version": "2.4.7",
"version": "2.4.8",
"manifest_version": 3,
"icons": {
"48": "icon.png",
Expand Down
4 changes: 2 additions & 2 deletionsjupyterlab/build.jupyterlab.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.4.6
VP_NEW_VER=2.4.7
VP_ORG_VER=2.4.7
VP_NEW_VER=2.4.8

# update version info
grep -REil "\"version\": \"${VP_ORG_VER}\"" package.json | xargs sed -i "s/\"version\": \"${VP_ORG_VER//\./\\.}\"/\"version\": \"${VP_NEW_VER}\"/g"
Expand Down
4 changes: 2 additions & 2 deletionsjupyterlab/package-lock.json
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

2 changes: 1 addition & 1 deletionjupyterlab/package.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-visualpython",
"version": "2.4.7",
"version": "2.4.8",
"description": "GUI-based Python code generator for Jupyter Lab as an extension",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletionsjupyterlab/pyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
version = "2.4.7"
version = "2.4.8"

[project.license]
file = "LICENSE"
Expand DownExpand Up@@ -92,7 +92,7 @@ file = [
]

[tool.tbump.version]
current = "2.4.7"
current = "2.4.8"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[tool.tbump.git]
Expand Down
4 changes: 2 additions & 2 deletionsjupyternotebook/build.jupyternotebook.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.4.6
VP_NEW_VER=2.4.7
VP_ORG_VER=2.4.7
VP_NEW_VER=2.4.8

# update version info
grep -REil ${VP_ORG_VER//\./\\.} setup.py visualpython/js/com/com_Config.js visualpython/js/com/com_Const.js | xargs sed -i --follow-symlinks "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"
Expand Down
2 changes: 1 addition & 1 deletionjupyternotebook/setup.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@

setup(
name = name,
version = '2.4.7',
version = '2.4.8',
packages = find_packages(),
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],
Expand Down
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