We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a3831 commit 5856924Copy full SHA for 5856924
1 file changed
src/file_io/import.js
@@ -67,22 +67,23 @@ define([
67
this.uuid = uuid; // Load html 영역의 uuid.
68
// Import 기본 패키지 목록
69
this.packageList = [
70
- { library:'numpy', alias:'np'}
71
- , { library:'pandas', alias:'pd'}
+ { library: 'numpy', alias:'np'}
+ , { library: 'pandas', alias:'pd'}
72
, {
73
- library:'matplotlib.pyplot', alias:'plt'
+ library: 'matplotlib.pyplot', alias:'plt'
74
, include: [
75
'%matplotlib inline'
76
]
77
}
78
- , { library:'seaborn', alias:'sns'}
+ , { library: 'seaborn', alias:'sns'}
79
+ , { library: 'plotly.express', alias: 'px'}
80
];
81
82
this.package = {
83
id: 'import',
84
name: 'import package',
85
library: 'common',
- description: '공통 패키지 임포트',
86
+ description: 'import basic packages',
87
code: '',
88
input: [
89
{
0 commit comments