Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork118
Release v2.2.3#135
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
Uh oh!
There was an error while loading.Please reload this page.
Merged
Release v2.2.3#135
Changes fromall commits
Commits
Show all changes
40 commits Select commitHold shift + click to select a range
dfef540 Fix visualpy linux script's path
5e07c79 Apply DataSelector to DataSplit App
f011573 Plotly temporary commit
b0c5715 Change README
5cefe7f Fix Bind
3a0fc6b Fix Reshape
af272ea Fix MultiSelector for multiple dataframe selected
3d3a624 Fix Subset button on Instance App
092198a Small changes
656c60a Fix Groupby
15d06e4 Fix Frame - Add column
8bcc288 Change variable selector to SuggestInput
d5d56bf Add plot_feature_importances_ to ModelInfo
358540e Add pivot_table to Reshape
fc075b8 Add bins option to Seaborn - histplot
df3e591 Add subset to Frame - Add column / Replace
b261b7d Set initial code to Frame - subset page
f10ccc2 Fix some operations on Frame app
07c9a60 Close VP Note area by default
a8632e4 Add hovering style for VP Note toggle icon
86e5d1b Remove some additional installment options on README
b1ea326 Handle signature comment bug
80a2247 Change Frame's submenu alignment
a4ba2a1 Change label
34bc1d6 Add description for Subset types
fa56ff8 Add comment to PopupComponent
dc97310 Change Seaborn tabs and Add user code tab page
a2c1761 Add Xticks, Yticks option to Seaborn Axes tab
6b17531 Rollback deleted useFile checkbox to WordCloud
85b6292 Fix WordCloud useFile bug\
8377148 Fix Original SuggestInput's hover item styles
4229cf6 Fix bug and styles on Subset, Instance apps
480a85f Add inplace operationo to Frame
42d6284 Add backtip to query code on Subset app
afe34ec Fix bug on Subset app
0e7b602 Focus on first input on opening inner popup
369444d Add Text checkbox on Reshape - melt page
25e48c8 Fix bindColumnSource bug - 0 binds with default value
71c315d Merge pull request #134 from minjk-bl/devops
minjk-blf9e34bf deploy visualpython 2.2.3
blacklogicdevFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
13 changes: 0 additions & 13 deletionsREADME.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionbin/visualpy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletionscss/component/dataSelector.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletioncss/component/popupComponent.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletionscss/m_apps/frame.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletionscss/m_apps/instance.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletionscss/m_apps/subset.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletionscss/m_visualize/plotly.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| /* plotly styles */ | ||
| .vp-pt-body { | ||
| display: grid; | ||
| grid-template-columns: calc(50% - 8px) calc(50% - 8px); | ||
| grid-template-rows: 1fr; | ||
| grid-row-gap: 5px; | ||
| grid-column-gap: 15px; | ||
| align-items: baseline; | ||
| align-content: baseline; | ||
| height: 100%; | ||
| } | ||
| .vp-pt-left-box label { | ||
| margin-bottom: 0px; | ||
| } | ||
| .vp-pt-left-box, | ||
| .vp-pt-right-box { | ||
| height: calc(100% - 10px); | ||
| } | ||
| .vp-pt-option-box { | ||
| height: calc(100% - 30px); | ||
| } | ||
| .vp-tab-bar { | ||
| width: 100%; | ||
| overflow-y: hidden; | ||
| } | ||
| .vp-tab-item { | ||
| display: inline-block; | ||
| position: relative; | ||
| width: 85px; | ||
| height: 30px; | ||
| line-height: 30px; | ||
| background: var(--light-gray-color); | ||
| cursor: pointer; | ||
| border: 0.24px solid #E4E4E4; | ||
| box-sizing: border-box; | ||
| border-radius: 2px 2px 0px 0px; | ||
| font-weight: bold; | ||
| text-align: center; | ||
| } | ||
| .vp-tab-item.vp-focus { | ||
| color: var(--font-highlight); | ||
| background: white; | ||
| border-bottom: 3px solid #FFCF73; | ||
| } | ||
| .vp-tab-page { | ||
| width: 100%; | ||
| height: 100%; | ||
| } | ||
| .vp-tab-page-box { | ||
| height: calc(100% - 30px); | ||
| min-height: 352px; | ||
| align-content: baseline; | ||
| } | ||
| .vp-pt-preview-title { | ||
| line-height: 30px; | ||
| } | ||
| .vp-pt-preview-option { | ||
| float: right; | ||
| padding-right: 5px; | ||
| } | ||
| .vp-pt-preview-box { | ||
| min-height: 352px; | ||
| width: 100%; | ||
| height: calc(100% - 30px); | ||
| } | ||
| .vp-pt-preview-content:empty::after { | ||
| content: 'No preview image'; | ||
| color: var(--gray-color); | ||
| } | ||
| .vp-pt-preview-box img { | ||
| width: 100%; | ||
| height: 100%; | ||
| } | ||
| .vp-tab-page label { | ||
| margin-bottom: 0px; | ||
| } | ||
| .vp-pt-setting-footer { | ||
| position: absolute; | ||
| left: 20px; | ||
| bottom: 15px; | ||
| } |
4 changes: 4 additions & 0 deletionscss/m_visualize/seaborn.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletionscss/menuFrame.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletionscss/root.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletionsdata/m_visualize/plotlyLibrary.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| define([ | ||
| ], function () { | ||
| /** | ||
| * name | ||
| * library | ||
| * description | ||
| * code | ||
| * options: [ | ||
| * { | ||
| * name | ||
| * label | ||
| * [optional] | ||
| * component : | ||
| * - 1darr / 2darr / ndarr / scalar / param / dtype / tabblock | ||
| * default | ||
| * required | ||
| * usePair | ||
| * code | ||
| * } | ||
| * ] | ||
| */ | ||
| var PLOTLY_LIBRARIES = { | ||
| 'scatter': { | ||
| name: 'Scatter Plot', | ||
| code: '${allocateTo} = px.scatter(${data}${x}${y}${etc})', | ||
| description: 'Draw a scatter plot with possibility of several semantic groupings.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| 'line': { | ||
| name: 'Line Plot', | ||
| code: '${allocateTo} = px.line(${data}${x}${y}${etc})', | ||
| description: 'Draw a line plot with possibility of several semantic groupings.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| 'area': { | ||
| name: 'Line Plot', | ||
| code: '${allocateTo} = px.area(${data}${x}${y}${etc})', | ||
| description: 'Draw a area plot.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| 'bar': { | ||
| name: 'Bar Plot', | ||
| code: '${allocateTo} = px.bar(${data}${x}${y}${etc})', | ||
| description: 'Draw a bar plot.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| 'funnel': { | ||
| name: 'Funnel Plot', | ||
| code: '${allocateTo} = px.funnel(${data}${x}${y}${etc})', | ||
| description: 'Draw a funnel plot.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| 'timeline': { | ||
| name: 'Timeline Plot', | ||
| code: '${allocateTo} = px.timeline(${data}${x_start}${x_end}${y}${etc})', | ||
| description: 'Draw a timeline plot.', | ||
| options: [ | ||
| { name: 'data', component: ['var_select'], var_type: ['DataFrame', 'Series', 'list'] }, | ||
| { name: 'x_start', component: ['col_select'], usePair: true }, | ||
| { name: 'x_end', component: ['col_select'], usePair: true }, | ||
| { name: 'y', component: ['col_select'], usePair: true }, | ||
| { name: 'allocateTo', label: 'Allocate To', component: ['input'], usePair: true } | ||
| ] | ||
| }, | ||
| } | ||
| return PLOTLY_LIBRARIES; | ||
| }); |
3 changes: 2 additions & 1 deletiondata/m_visualize/seabornLibrary.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.