File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2058,6 +2058,7 @@ export class DataFrame extends Ndframe {
20582058 col_vals . forEach ( ( col , i ) => {
20592059 // self[col_names[i]] = new Series(col, { columns: col_names[i], index: self.index })
20602060 Object . defineProperty ( self , col_names [ i ] , {
2061+ configurable : true ,
20612062 get ( ) {
20622063 return new Series ( col , { columns : col_names [ i ] , index : self . index } ) ;
20632064 } ,
Original file line number Diff line number Diff line change @@ -2074,6 +2074,7 @@ export class DataFrame extends Ndframe {
20742074 col_vals . forEach ( ( col , i ) => {
20752075 // self[col_names[i]] = new Series(col, { columns: col_names[i], index: self.index })
20762076 Object . defineProperty ( self , col_names [ i ] , {
2077+ configurable : true ,
20772078 get ( ) {
20782079 return new Series ( col , { columns : col_names [ i ] , index : self . index } ) ;
20792080 } ,
You can’t perform that action at this time.
0 commit comments