change the y ticks in r plot code example
Example: change the y ticks in r plot
yticks = c('A', 'B', 'C')
x = c(0, 1, 2, 3, 4, 5)
y = c(1, 2, 3, 2, 1, 3)
plot(y = y, x = x, yaxt = 'n', type='b')
axis(side = 2, at = c(1,2,3), labels = yticks)
yticks = c('A', 'B', 'C')
x = c(0, 1, 2, 3, 4, 5)
y = c(1, 2, 3, 2, 1, 3)
plot(y = y, x = x, yaxt = 'n', type='b')
axis(side = 2, at = c(1,2,3), labels = yticks)