Is it possible to put mark marks only on the x axis inside the print area? I'm trying to:
axis(1,at=c(0:71),c(rep(0:23,3)),cex.axis=.7, font=1,tck=.01)
It seems that
par(mgp=c(0,-1.4, 0))
places label tags xand yin the construction area.
x
y
Why don't you just draw the ticks where you want them to use the argument posfor axis():
pos
axis()
plot(0:72, xaxt="n") text(0:71, -1, rep(0:23, 3), cex = 0.5) axis(1, at=c(0:71), NA, cex.axis=.7, font=1, tck=.01)
Source: https://habr.com/ru/post/1613177/More articles:Why Jackson PropertyGenerator prevents a recursive loop - javaRemote WCF Debugging Services Running under an IIS Account - visual-studio-2012VBA copies the entire list line - vbaSwift function with generic argument type - genericsAnimation works only once - javascriptPHP / MySQLi on Windows: inserts AUTO_INCREMENT column into 2 innoDB MySQL table - phpWhat is ATACIBITE for default transactions for MDBS? - javareadline with default value - cКогда я должен использовать `REQUIRED` vs` NOT_SUPPORTED` как значение @TransactionAttribute для MDB? - javasetUncaughtExceptionHandler does not work in Maven project - javaAll Articles