Skip to content

Commit 5856924

Browse files
author
minjk-bl
committed
add plotly to Import app
1 parent 67a3831 commit 5856924

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/file_io/import.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,23 @@ define([
6767
this.uuid = uuid; // Load html 영역의 uuid.
6868
// Import 기본 패키지 목록
6969
this.packageList = [
70-
{ library:'numpy', alias:'np'}
71-
, { library:'pandas', alias:'pd'}
70+
{ library: 'numpy', alias:'np'}
71+
, { library: 'pandas', alias:'pd'}
7272
, {
73-
library:'matplotlib.pyplot', alias:'plt'
73+
library: 'matplotlib.pyplot', alias:'plt'
7474
, include: [
7575
'%matplotlib inline'
7676
]
7777
}
78-
, { library:'seaborn', alias:'sns'}
78+
, { library: 'seaborn', alias:'sns'}
79+
, { library: 'plotly.express', alias: 'px'}
7980
];
8081

8182
this.package = {
8283
id: 'import',
8384
name: 'import package',
8485
library: 'common',
85-
description: '공통 패키지 임포트',
86+
description: 'import basic packages',
8687
code: '',
8788
input: [
8889
{

0 commit comments

Comments
 (0)