Questions tagged [line-plot]

Line plot is a way to represent a series of data by plotting them on two- or tridimensional area and connecting respective data points with lines.

391 questions
0
votes
0 answers

d3 way to something like matlabs plot3

I'm sure d3 can do something like matlabs plot3! Multi-Series Line charts I have somewhat figured out by now, but as my lines tend to not change drastically over time (yes, 3rd axis would be time) multi-series is not of much use there, esp. with 10+…
mths
  • 807
  • 8
  • 11
0
votes
1 answer

Parse plot lines by more than one variable ggplot

I am desiring to plot two levels of data (high, low) for two days (day o, day 1) for both male and female subjects. I have been success in faceting by day and by level. However I am unsuccessful of combining and identifying the genders. I would…
tcek
  • 51
  • 4
0
votes
1 answer

Lineplot legend + ABLINE ggplot

I have the following ggplot and trying to add the legend and a geom_abline at median. purple line is for 2013 prods and red is for 2014 This is what I did to generate the plot: ggplot(prods[Year==2013,], aes(x = Date, y = Prod, group = SOM)) + …
Shery
  • 1,808
  • 5
  • 27
  • 51
0
votes
1 answer

ggplot2 per year

I have a dataframe which contains productivity measure by date. the date starts from 05/04/2013 to 07/11/2014. The productivity measure is for 6 organisational unit Data looks like this: > str(prods) 'data.frame': 588 obs. of 6 variables: $ SOM …
Shery
  • 1,808
  • 5
  • 27
  • 51
0
votes
0 answers

Stick Figure Animation Using Line Animation in Matlab

I am trying to animate a motion file using the Matlab drawnow function and line plotting. The motion file has both 3x3 euler angles (yaw-pitch-roll) and XYZ coordinate values and I plan on using line plotting to create a stick figure animation where…
Muhaned g
  • 17
  • 8
0
votes
1 answer

Add error bars separately in lattice line-plot?

I have a line-plot produced with lattice's xyplot. It contains two types of temperatures measured, one of these are mean values. Therefore, I would like to add standard errors to these points (t.tort). Unfortunately, doing this separately does not…
user2696652
0
votes
1 answer

Plot missing points for complicated 3D list of points - Python

Hi I have a 3D list (I realise this may not be the best representation of my data so any advice here is appreciated) as such: y_data = [ [[a,0],[b,1],[c,None],[d,6],[e,7]], [[a,5],[b,2],[c,1],[d,None],[e,1]], …
James Elder
  • 1,583
  • 3
  • 22
  • 34
0
votes
4 answers

How to display value of LinePlot JPGraph when the mouse is over the graph line or tick point

I have project to make a graph with many x axis value and it can't Display by show() function in display value class because it will overlap each other. So I want to display graph value only when the mouse is over the line or tick point. Is it…
CoNello
  • 1
  • 1
  • 2
0
votes
0 answers

Generate a line plot connecting top points from a scatter plot (Manhattan plot)

I am trying to create a line plot connecting the top points of a Manhattan plot (showing only the 'skyline' of the manhattan plot). I think I can manually select the points to connect and specify them with the 'line' command, but I was wondering if…
user971102
  • 3,005
  • 4
  • 30
  • 37
-1
votes
0 answers

Line Plot points aren't plotted in the correct order

I made a line plot in python, but it won't show up properly. I used sort_values() so that the x-labels will be ordered. But as you can see in the picture, the x-labels aren't in order. i.e 202307 is in front of 202211 Here's the code I…
Jenna
  • 21
  • 3
-1
votes
3 answers

How to create two different legends from multiple plot calls

I have to create a visualization where there are multiple line plots (trend lines/moving averages etc.), and multiple scatter charts. I have successfully created all the charts in a single plot, however I want the legend of scatter chart to be…
-1
votes
2 answers

How can I create a seaborn.lineplot with multiple lines?

I need to create a plot with different timeseries. I have a text.txt like this: its 0.9961912799250892 0.9611789138018554 0.9362671060056597 0.8763435242194505 1.0123654188938198 1.0049162314011486 …
Enrico1398
  • 21
  • 3
-1
votes
2 answers

Why line plot (ggplot2) is producing vertical lines?

I am trying to make a lineplot for sales across years for different states, but only getting zigzags no matter whatever solution I try from questions asked previously. Here is the code I used: ggplot(df, aes(x = year, y = sales, group = location,…
Ghose Bishwajit
  • 316
  • 4
  • 12
-1
votes
1 answer

Python Matplotlib lineplot with multiple x-axis data causing common y-axis issue

New to Python and this is my first work with Matplotlib. I'm trying to plot multiple data sets on to a single lineplot but I'm having issues with getting the y-axis to display properly. The x-axis is time in seconds. The y-axis are numerical values.…
robobozo
  • 113
  • 1
  • 5
-1
votes
1 answer

Mean line with 95% confidence intervall for vertical depth profile

I want to plot temperature data measured from the surface down to 500 m depth. Currently, I have a scatterplot, but wish to substitute the dotts with a mean line and a 95% confidence band. So far, there is no magic behind this plot, i.e., ordinary…
1 2 3
25
26