Mathematica How to Create Horizontal Filling to the Y-Axis in Mathematica?

  • Thread starter Thread starter cryptist
  • Start date Start date
  • Tags Tags
    Mathematica
AI Thread Summary
To create horizontal filling lines to the y-axis in Mathematica, users are advised to start by replicating existing examples and making incremental adjustments to understand the functionality. The command /. List[x_, y_] -> List[y, x] has been noted as ineffective for ListPlot, which complicates the task. A suggested approach includes using a combination of ListPlot and Graphics to draw lines from data points to the y-axis. Providing a clear, simple dataset and a specific desired outcome can facilitate more effective assistance from the community. Ultimately, patience and experimentation with various options are essential to achieve the desired visual result.
cryptist
Messages
121
Reaction score
1
Filling->Axis command makes vertical lines to the x-axis. How can I make same thing for the y-axis? (Horizontal lines to the y-axis)
 
Physics news on Phys.org
Study all the responses here and see if you can adapt it to what you need

http://stackoverflow.com/questions/6204898/plotting-on-the-y-axis-in-mathematica

This might not be an understandable or easy or dependable thing to do.

Start by trying to reproduce exactly the examples that they show. Then make very small changes and see if it continues to work. Try to figure out what went wrong and how to possibly correct it if it fails. Gradually work up to the actual problem you have.
 
Last edited:
I used this command: /. List[x_, y_] -> List[y, x]
But I guess it does not work for ListPlot. Mathematica didn't draw anything when I use that command. My data contains points generated by ListPlot and I want to draw horizontal filling lines from points to the y-axis.
 
Post the smallest simplest example dataset you can construct along with a simple clear explanation of what you want the result to look like and perhaps someone can see a way to accomplish what you are looking for.
 
Here is an example:

ListPlot[Table[{x, x*x}, {x, 1, 5, 1}], Filling -> Bottom,
PlotStyle -> {Black, PointSize[0.015]}]

When you plot the code above, there will be a filling from points to x-axis. I want also a filling from points to y-axis.

How can I do that?
 
Thank you. A good simple clear concrete example makes it much more likely to give you an answer like you are looking for.

In[1]:= Show[{
ListPlot[Table[{x, x*x}, {x, 1, 5, 1}], Filling -> Bottom, PlotStyle -> {Black, PointSize[0.015]}],
Graphics[Table[Line[{{1, x^2}, {x, x^2}}], {x, 1, 5, 1}]]
}]

Out[1]= ...PlotSnipped...

Then, only if you really need to, you spend minutes or hours or days fiddling with the hundreds of options and directives to adjust the style to try to get close to exactly what you want.
 
Last edited:
  • Like
Likes 1 person

Similar threads

Replies
1
Views
2K
Replies
4
Views
2K
Replies
4
Views
2K
Replies
3
Views
2K
Replies
5
Views
2K
Replies
13
Views
2K
Replies
4
Views
2K
Back
Top