Rotate Axis Labels Horizontally We can rotate the axis label horizontally by passing thelas=1in the plot. Example Code: # Create example Dataset.seed(99999)xLabel<-rnorm(1000)yLabel<-rnorm(1000)# The Horizontal Axis Plotplot(xLabel,yLabel,las=1) ...