0
votes
1answer
14 views

R: omi and mar return with xlim-errors

I want to save the image of a plot as png-file; however it cuts off the axis-labels. So I tried leaving a greater margin by setting "omi" and "mar" but it does not seem to work. Adding more pixels ...
1
vote
1answer
105 views

R barplot Y-axis scale too short

I'm trying to generate a barplot, but the y-axis scale is too short. Here's my code: barplot(as.matrix(dat), log="y", ylim=c(10000,100000000), beside=TRUE, ylab = "Number of reads", col = ...
0
votes
2answers
69 views

Obtaining tickmark vector or intervals in R - par(“yaxp”) not working

I have a log-log plot displaying tick marks on the y-axis from 1 to 7. I would like to obtain the interval between each tickmark for a function. > par("yaxp") [1] 1 7 -6 I was expecting ...
12
votes
2answers
218 views

How to place the intercept of x and y axes at (0 , 0) and extend the x and y axes to the edge of the plot

Suppose I want to plot x^2. I can use curve() as follows. curve(x^2, -5, 5) However, I would like the axes to go through (0, 0). I could do something as follows: curve(x^2, -5, 5, axes=FALSE) ...
13
votes
4answers
210 views

Creating line plot with time scale and labels in r

I am trying to create the plot like following (many times I end up drawing a plot like this by hand, but this time I want to plot it myself). Here is my data and my trial: myd <- data.frame ...
0
votes
1answer
1k views

Custom x-axis values in a matlab plot

Currently when I plot a 9 by 6 array, the x-axis of the figure is just 1, 2, 3 up to 9. The Y-axis shows the correct values. Instead of 1 to 9 I would like the x-axis values to be custom. They should ...
3
votes
1answer
335 views

Matlab tickmarks outside (not inside) axis box

Is there a way to extend tickmarks to the outside of the axis, or to generally display them on the outer side of an axis. In my histogramm you can't really notice the tickmarks on the X-axis ...
2
votes
4answers
417 views

Adjusting the limits of x and y axis, when adding new curves to a plot in R

I have two datasets (df1 and df2) that are plotted. df1 = data.frame(x=c(1:10), y=c(1:10)) df2 = data.frame(x=c(0:13), y=c(0:13)^1.2) # plot plot(df1) # add lines of another dataset lines(df2) ...
-1
votes
1answer
119 views

R: KM curves plot in survival package change x axis range

I'm using the survival package to generate the KM curves for two populations but when I tried to define the xmax parameter, I am unable to extend the x-axis range from 0-15 to 0 - 50. Here is my ...
2
votes
1answer
70 views

how to enter a bias for a graph in matlab

I want to plot a couple of variables on one figure. Each of them I want to give some 'bias' on the y axis, for example: variable a begins in point (0,0), variable b in (0,-10), c (0,-20). How can I ...
-6
votes
1answer
139 views

Suppress ticks and labels in an r plot

I want to create a plot with ticks and labels above and to the right of the plot using axis(). How do I suppress the ticks and labels that 'automatically' print with the plot() function? Thank you ...
4
votes
2answers
259 views

how to set axis breaks to only a part of the axis?

In R, I plotted the following histogram. The problem is on the X axis. The majority of data fall into the interval [0, 10]. Very few have an X value larger than 10, although the largest one is 34. ...
0
votes
1answer
250 views

R: plotting untransformed data on a log x axis (similar to plotting on log graph paper)

I have 3 sets of data that I am trying to plot on a single plot. The first data set x values range from ~ 1 to 1700 whereas the other two data sets x values are less than 20. Therefore I want to plot ...
2
votes
1answer
213 views

Showing multiple Probability Plots on the same graph using the plot(cenros) command from the NADA library

I am currently conducting a performance analysis for an urban stormwater management facility which employs Low Impact Development practices. I have the Event Mean Concentrations (EMCs) of several ...
3
votes
2answers
2k views

Normalizing y-axis in histograms in R ggplot to proportion

I have a very simple question causing me to bang my head on the wall. I would like to scale the y-axis of my histogram to reflect the proportion (0 to 1) that each bin makes up, instead of having the ...
1
vote
1answer
773 views

JavaFX 2.x : How to highlight plotted data on a chart?

I would like to export (.txt or .cvs) data plotted on a graph by left mouse click, highlight it then right mouse click opens a pop-up then a file chooser dialog to save data Here is a picture example ...
2
votes
1answer
779 views

R flip XY axis on a plot

This seems like a trivial R question, but I didn't find any convincing solution. I would like to flip my plot where the X axis become Y, and vice-versa. In boxplot there is an horiz="T" option, but ...
1
vote
2answers
751 views

imagesc() in Matlab not showing equal axis

I use the following lines of code to plot the images: for t=1:subplotCol subplot(subplotRow,subplotCol,t) imagesc([1 100],[1 100],c(:,:,nStep*t)); colorbar xlabel('X-axis') ...
3
votes
1answer
2k views

Change x axis labeling independent of x values?

Imagine I am plotting e.g. this: plot(1:1500,1:1500) This will look like the image below, with the x axis starting at 0 and going up to 1500. Now I don't want to have that labeling, but instead ...
1
vote
1answer
600 views

plot tick level control

Here is my question: myd <- data.frame (V1 = paste ("V", 1:1000), V2 = rnorm(1000)) plot(myd[,1], myd[,2]) As my plot is busy in axis, I want to just put tick markers at every 100 and display ...
0
votes
2answers
751 views

R plot, x-axis and y-axis touching

My problem concerns the making of a graph for a publication in R. I have used the plot function like follows: plot(x=data$SL, y=data$BD, xlab = "SL (mm)", ylab = "BD (mm)", pch=data$pch) SL ranges ...
3
votes
1answer
389 views

Plotting axis labels with Greek symbols from a vector

I am struggling trying to plot Greek symbols as axis labels. Due to for looping several plots with different scales, I would like to use a vector that contains the symbol name instead of using the ...
0
votes
2answers
1k views

supress ticks in plot in r

Appolozies for the simple question. I want to remove labels and axis from X axis, however adding new ticks. plot(1:10, ylab = "") at1 <- seq(1, 10, 0.1) axis(side = 1, at = at1, labels = FALSE) ...
7
votes
1answer
1k views

How to invert the y-axis on a plot

I would like to know how to make a plot in R where the y-axis is inverted such that the plotted data appears in what would be the fourth quadrant (IV) of a cartesian plane, as opposed to the first (I) ...
0
votes
4answers
428 views

scatter plot specifying color and labelling axis in r

I have following data and plot: pos <- rep(1:2000, 20) xv =c(rep(1:20, each = 2000)) # colrs <- unique(xv) colrs <- xv # edits yv =rnorm(2000*20, 0.5, 0.1) xv = lapply(unique(xv), ...
1
vote
1answer
291 views

R Avoid x axis beeing automatically power of ten scaled

R automatically uses powers of ten for the x axis (values are from zero to 500000) - but i want just the plain figures in steps of 50000 or something (NOT written as powers of ten). I tried to set the ...
0
votes
2answers
414 views

how to draw only axis on plot, not rectangle

Sorry I cannot find this: when I draw any plot in R, I have arrround graph area rectangle. Its left side is X axis and bottom line is Y axis, which I want to have. But there are always also lines on ...
0
votes
1answer
259 views

How can format xaxis of a line plot in R so it can accomadate multiple text labels?

Name UP Downs A 10 -3 B 2 -4 C 1 -1 D 4 -1 E 5 0 F 0 -1 G 6 -5 H 0 -1 I 7 -1 J 0 -1 K 0 -11 L 3 -1 M 0 -13 N 2 -1 O 0 -1 P 1 -1 Q 0 ...
1
vote
0answers
394 views

core plot ios axis pan & zoom issue

I have problem with proper pan & zoom in my core plot graph. I created custom look for my graph and problem is with axis that are visible on outside of the graph area. ...
6
votes
1answer
390 views

How to plot with x-axis at the top of the figure?

I would like to ask how to produce a plot similar to that in the figure below? Basically, how to have x-axis at the top of the figure. Thanks Image from: ...
0
votes
1answer
641 views

Label orientation in an R plot

How can I get label orientation as in the plot below:
-1
votes
1answer
5k views

R - Customizing X Axis Values in Histogram

I want to change the values on the x axis in my histogram in R. The computer currently has it set as 0, 20, 40, 60, 80, 100. I want the x axis to go by 10 as in: ...
2
votes
2answers
2k views

R: multiple x axis with annotations

Is it possible to add more than one x-axis to a plot in R? And to put an annotation next to each scale? Edit > here's the result of Nick Sabbe idea. For the annotation (a little text at the left of ...
1
vote
2answers
4k views

R barplot axis scaling

I want to plot a barplot of some data with some x-axis labels but so far I just keep running into the same problem, as the axis scaling is completely off limits and therefore my labels are wrongly ...
0
votes
3answers
666 views

Flipping the X and Y values in a plot in R (with the data changing axes as well)

How do I make a plot in R so that the value of a variable displays along the X axis and the variable names go vertically along the Y axis? Ultimately, the plot should look vertical with the variable ...
2
votes
3answers
7k views

How to add a x-axis line to a figure? (matlab)

I want to add a x-axis line at 0 to a matlab figure so that I can compare my data to see if it is positive or negative when saving the figures to a jpg. What is the best way to do this? I know you ...
1
vote
1answer
399 views

How to specify the margin of a plot in mm/cm using matplotlib?

Example Suppose I have two triangles: A triangle with points (0, 0), (10, 0), (10, 0.5) and a triangle with points (0, 0), (1, 0), (0.5, 11) The resulting two plots without specifying the xlim ...
2
votes
0answers
260 views

QwtPlot custom axis

I want to create plot with two horizontal axes. Bottom axis is linear, top axis is non-linear. I have a table of data for conversion "Bottom value -> top value". I found out that QwtScaleEngine ...
1
vote
1answer
584 views

Uneven axis in R plot

Is it possible to draw an uneven axis in R? I know that I can specify labels at specific spots, but I mean, I want a particular section of my graph to be spread out. For instance, imagine an X axis ...
4
votes
1answer
747 views

How to query axis limits in R?

Is it possible to get axis limits for current plot in R? How? Preferably in standard base library (I don't like to use ggplot etc., but these solutions are also welcome).
1
vote
1answer
713 views

Maxima 2D plot — How to set axes equal

For example, what is a code for plotting y = x so that y- and x-axis have the same scale ?
0
votes
1answer
3k views

Matlab: Don't show x-axis-labels in one of the subplots

I want to do the same like this here: matplotlib-share-x-axis-but-dont-show-x-axis-tick-labels-for-both-just-one set(plot,'visible','off') doesn't show any axis.
0
votes
1answer
468 views

How do I vertically flip text on the axis of a plot in MATLAB?

I'm having an issue where I have a surface and an image I want to display side by side. To do this I used this code. figure(1) subplot(1,2,1) axis([0 100 0 100 0 1]) surf(x,y,z) title(['Surface ...
7
votes
2answers
2k views

Displaying minor logarithmic ticks in x-axis in R

I have a normal distribution plot and a histogram plot with x axis in log scale displaying 0, 10^0, 10^1 ... I want to include minor ticks between the major ones. Actually I was able to change the ...
5
votes
3answers
3k views

Avoid overlapping axis labels in R

I want to plot data in a graph with larger font-size for the lables. x = c(0:10) y = sin(x) + 10 plot ( x, y, type="o", xlab = "X values", ylab = "Y values", cex.axis = "2", ...
1
vote
1answer
199 views

How to set arrows at the end of Core Plot axis?

I found Core Plot as very nice plotting library. But there is small issue: I can not find any way to set directional arrows at the end of axis for plots. Am I missing something here maybe?
0
votes
2answers
748 views

How to set custom tick marks in Core Plot to icons?

Is there a way to make tick mark (major tick mark) to be UIImage (custom graphics) instead of text? I have values in one of the axis I need to present as icons. I do not see any delegate for this but ...
0
votes
2answers
1k views

Matlab: Problem with ticks when setting minor grid style and two y-axis

with help of the community in this thread: Matlab: Minor grid with solid lines & grey-color I got it to work to set minor grid lines as solid and coloured style. But when adding a second y-axes ...
1
vote
2answers
1k views

Axis position in R scatterplot

I'm trying to create a simple scatter plot in R, where the x-axis range is -10:10, and to re-locate the y axis to the x=0 point. This seems like a fairly basic operation, but I found no way to do ...
3
votes
4answers
145 views

How do I use a common axis for three similar time/value graphs

I have three timestamped measurement series, taken over the same interval, but with different actual timestamps. I'd like to show these three trajectories in a combined plot, but because the x-axis ...

1 2