Every line of 'pandas plot title' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
574 def set_xaxis_title(self, xtitle): 575 """Set x-axis title""" 576 self.x_title = text_window(self, xtitle) 577 self.all_titles[1] = self.x_title 578 self.update()
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
97 def set_title(self,s,panel=None): 98 "set plot title" 99 if panel is None: panel = self.current_panel 100 self.panels[panel].set_title(s)
70 def set_x_title(self, t, plotid=0): 71 ''' 72 ''' 73 axis = self._get_x_axis(plotid) 74 axis.title = t 75 # print axis.title, axis, t 76 super(TimeSeriesGraph, self).set_x_title(t, plotid=plotid)