How to give y ticks in box plot

Hi i have used below code for blox plot. Can someone say how can i give x and y labs to this, and x and y ticks to axis .

eg: i want to give y axis name as “concentration”, x axis name as “Time in hrs”
Yticks as (0,10,25,35, 50,75,100), and x ticks as (1, 23.5)

box_10mg_q24 = data(df_pop_10mg_q24hr) * mapping(:time,:DV) * visual(BoxPlot)

draw(box_10mg_q24 )

Thnaks in advance

Labels are explained here Mapping · Algebra of Graphics

Axis settings here Axis tweaking · Algebra of Graphics

1 Like