Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

yticks in plotly expres

import plotly.graph_objects as go

fig = go.Figure(go.Scatter(
    x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
    y = [28.8, 28.5, 37, 56.8, 69.7, 79.7, 78.5, 77.8, 74.1, 62.6, 45.3, 39.9]
))

fig.update_layout(
    xaxis = dict(
        tickmode = 'array',
        tickvals = [1, 3, 5, 7, 9, 11],
        ticktext = ['One', 'Three', 'Five', 'Seven', 'Nine', 'Eleven']
    )
)

fig.show()
Comment

PREVIOUS NEXT
Code Example
Python :: python method name 
Python :: How to get the positions where values of two columns match? 
Python :: round to nearest multiple of 5 python from both end 
Python :: python integrated with activeX 
Python :: python return true for list comprehension 
Python :: onlinecourses.osppro.com 
Python :: discertize dara python 
Python :: ValueError: unknown is not supported in sklearn.RFECV 
Python :: load training data python from coco 
Python :: dask dataframe csv tutorial 
Python :: get queryset 
Python :: ec2 ssh terminal hangs after sometime 
Python :: exec inside def is not working in python 
Python :: roganrola 
Python :: jupyter_ascending 
Python :: vehari weather 
Python :: install sorting 
Python :: fibonacci sequence in python 2.7 
Python :: indentation error in python atom editor 
Python :: Spansk dansk 
Python :: python invalid syntax for no reason 
Python :: how save second sheet in excel using python 
Python :: mechanize python #2 
Python :: python profile is not defined line_profiler 
Python :: for_else_and_while_else_statement 
Python :: Run flask on docker with postgres and guinicorn 
Python :: str vs rper in python 
Python :: how call a class in another class python 
Python :: saving a dta file 
Python :: Code Example of Checking if a variable is None using is operator 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =