Linked Questions
15 questions linked to/from How to add a vertical line to a plot?
11 votes
3 answers
9k views
Plotting Vertical Asymptotes [duplicate]
The following code produces the graph of $f(x)=\frac{1}{x-1}$ correctly. ...
4 votes
2 answers
5k views
Adding a red horizontal line to my plot [duplicate]
I have a list of numbers which I have named "result" and which I modify according to certain rules. At the end of the routine, I plot the list with the command: ListPlot[result, PlotRange -> ...
0 votes
1 answer
2k views
How to plot a vertical line with fixed range in grid? [duplicate]
I want to plot a vertical line on a graph. The plot range on the graph ranges from 0 - 12. I want the vertical line at x-axis = 0.8, but the vertical height going from 0 to 7 only. I am not sure how ...
1 vote
2 answers
853 views
How to Plot Vertical Asymptote [duplicate]
How can I plot the vertical asymptote x=3 for this function: f(x)=Log2(x-3) This is what I have tried so far: ...
0 votes
1 answer
212 views
can someone how to plot $x = c$ in a different color scheme? [duplicate]
Exactly as title says. I do not know why I am having so much trouble with this. I have googled many solutions and I cannot find a straightforward answer. Also, the only method I know is "Gridlines" ...
1 vote
0 answers
39 views
How to draw a line marking where each chapter occurs in a text? [duplicate]
I am performing a text analysis on C.S. Lewis's book The Lion, the Witch, and the Wardrobe. I have created the following analysis of textual occurences of Aslan or Lion, Peter, Lucy, Edmund, Susan, ...
14 votes
4 answers
975 views
Adding Lines to Sparklines (plots w/o frames, axes, etc.)
I have been working with Sparklines, thanks to some code found here. Here is what I am using: ...
18 votes
4 answers
4k views
Adding custom GridLines to the "automatic" ones
I need to add custom (vertical) grid lines to a plot (to a DateListPlot, to be precise). I know there is the option of ...
7 votes
2 answers
2k views
How to insert guide-lines in graphics without specifying range?
Is it possible to insert guide lines in Graphics - for example a horizontal line through y=0 coordinate without specifying the range of the line? Originally I assumed Infinity might do the trick: <...
2 votes
2 answers
2k views
How do I add a vertical thick line to log-log plots?
How do I add a vertical thick line to my ListLogLogPlot? I tried with the following code (a minimal non working example), but I get an error (the plot becomes pink) ...
5 votes
2 answers
767 views
How to add the position of an added vertical line to the plot itself?
In this question it is answered how to add a vertical line to a graph. However, it has not been shown that how can someone add the position of that vertical line to the axis. How can I add the ...
1 vote
1 answer
2k views
I don't understand the Epilog function
I had the same question as How to add a vertical line to a plot and I have read the first answer using the Epilog function. This answer solved my problem and my code is now working. However, I don't ...
3 votes
2 answers
2k views
Add lines and text in a plot
If I have the following code: ...
3 votes
1 answer
3k views
Adding vertical dotted lines to a plot with different markers as dots
Based on this answer I am able to draw dotted or dashed vertical lines in a plot using Epilog. For example (from the answer I linked) ...
2 votes
1 answer
87 views
Vertical line without `GridLines`
I have the following Mathematica code. I want you to draw a vertical line at π/2, but without using GridLines -> {{Pi/2}, None}, because the line does not appear ...