I have two lists that I want to plot with ListLinePlot:
list1 = {1, Missing, 3, Missing, 1, 1, 1, Missing, 2, 2, Missing, 1, 2, 1, 1, 2, Missing, 3, Missing, 2, 3, 3, 4, Missing, Missing, 2, Missing, Missing, 1, 3, Missing, 1, 4, 2, 3, 10, 3, 8, 4, 10, 4, 6, 5, 3};
list2 = Range[44];
ListLinePlot[{list1, list2}]
However the plot that I produce with this code is wrong

When I replace all Missing Values with 0 like this:
ListLinePlot[list1/. Missing -> 0, list2}]
I will get a correct plot like this:

I just want list1 with missing values to be displayed a the correct position...
But as you can see, the first and third value of list1is not displayed in the plot. Why?
Many thanks in advance

Missingwith0. What is wrong with that? "I just want list1 with missing values to be displayed a the correct position." I don't know what you mean by this. Can you explain more clearly what you're trying to do here? $\endgroup$