MCPcopy Index your code
hub / github.com/plotly/plotly.py / _deprecated

Method _deprecated

plotly/tools.py:570–577  ·  view source on GitHub ↗
(old_method, new_method=None)

Source from the content-addressed store, hash-verified

568class FigureFactory(object):
569 @staticmethod
570 def _deprecated(old_method, new_method=None):
571 if new_method is None:
572 # The method name stayed the same.
573 new_method = old_method
574 warnings.warn(
575 "plotly.tools.FigureFactory.{} is deprecated. "
576 "Use plotly.figure_factory.{}".format(old_method, new_method)
577 )
578
579 @staticmethod
580 def create_2D_density(*args, **kwargs):

Callers 14

create_2D_densityMethod · 0.80
create_candlestickMethod · 0.80
create_dendrogramMethod · 0.80
create_distplotMethod · 0.80
create_facet_gridMethod · 0.80
create_ganttMethod · 0.80
create_ohlcMethod · 0.80
create_quiverMethod · 0.80
create_streamlineMethod · 0.80
create_tableMethod · 0.80

Calls 1

formatMethod · 0.45

Tested by

no test coverage detected