I have 2D landmarks data (x,y) of bones and I plot it using the function plot
in R language.
The problems:
- Since the x-axis and y-axis have the same unit, I want the plot to have an actual size.
The picture that I want (manual adjusted in RStudio)
The length between 150 and 350 on the x-axis must be half the length between 100 and 500 in the picture.
png("picture.png")
plot(data)
dev.off()
This is the code that I use to save the picture on my computer.