@@ -76,7 +76,7 @@ define([
7676code . append ( saveas ) ;
7777break ;
7878}
79- com_interface . insertCell ( 'code' , code . toString ( ) , 'Data Analysis > Profiling' ) ;
79+ com_interface . insertCell ( 'code' , code . toString ( ) , true , 'Data Analysis > Profiling' ) ;
8080that . loadReportList ( ) ;
8181} ) ;
8282}
@@ -113,7 +113,7 @@ define([
113113}
114114var code = new com_String ( ) ;
115115code . appendFormat ( "{0}.to_file('{1}')" , varName , path ) ;
116- com_interface . insertCell ( 'code' , code . toString ( ) , 'Data Analysis > Profiling' ) ;
116+ com_interface . insertCell ( 'code' , code . toString ( ) , true , 'Data Analysis > Profiling' ) ;
117117
118118that . selectedReport = '' ;
119119} ) ;
@@ -124,7 +124,7 @@ define([
124124default :
125125return ;
126126}
127- com_interface . insertCell ( 'code' , code . toString ( ) , 'Data Analysis > Profiling' ) ;
127+ com_interface . insertCell ( 'code' , code . toString ( ) , true , 'Data Analysis > Profiling' ) ;
128128that . loadReportList ( ) ;
129129} ) ;
130130}
@@ -143,7 +143,8 @@ define([
143143
144144generateInstallCode ( ) {
145145return [
146- '!pip install pandas-profiling'
146+ '!pip install pandas-profiling' ,
147+ '!pip install ipywidgets'
147148] ;
148149}
149150