Exemple #1
0
 def _repr_html_(self):
     box = HBox()
     box.children = [
         self.value_text, self.vary_checkbox, self.min_checkbox,
         self.min_text, self.max_checkbox, self.max_text
     ]
     display(box)
Exemple #2
0
 def _repr_html_(self):
     display(self.models_menu)
     button_box = HBox()
     button_box.children = [self.fit_button, self.guess_button]
     display(button_box)
     for pw in self.param_widgets:
         display(pw)
     self.plot()
Exemple #3
0
 def _repr_html_(self):
     display(self.models_menu)
     button_box = HBox()
     button_box.children = [self.fit_button, self.guess_button]
     display(button_box)
     for pw in self.param_widgets:
         display(pw)
     self.plot()
Exemple #4
0
 def _repr_html_(self):
     box = HBox()
     box.children = [self.value_text, self.vary_checkbox,
                     self.min_checkbox, self.min_text,
                     self.max_checkbox, self.max_text]
     display(box)