May be it is simple. But I am not getting how to plot the following data using R.
Basically the x-axis has type (i.e., A, B, C, D four labels). On the plot I want to represent the numbers (v1, v2, v3, v4) as points. For example, for A, on the y-axis I want to point 99, 110, 150, and 170. Moreover, I need to use different pch value for point. I tried to use stripchart but I am not sure how to assign different pch values under each of the types A, B, C, D. Please see for points (99, 110, 150, 170) of A in the below figure.
Data:
type A B C D
v1 99 227 295 503
v2 110 440 620 970
v3 150 600 934 1330
v4 170 650 1012 1390

Are you looking for something like this?
Resulting in:
Update
Sorry, I misread the first question. Try this: