Skip to content

Commit cb4af40

Browse files
author
Matthias Koeppe
committed
src/sage/stats/time_series.pyx: More block tags
1 parent fc36e24 commit cb4af40

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/sage/stats/time_series.pyx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,15 +1058,16 @@ cdef class TimeSeries:
10581058
10591059
EXAMPLES::
10601060
1061+
sage: # needs sage.plot
10611062
sage: v = stats.TimeSeries([5,4,1.3,2,8,10,3,-5]); v
10621063
[5.0000, 4.0000, 1.3000, 2.0000, 8.0000, 10.0000, 3.0000, -5.0000]
1063-
sage: v.plot() # needs sage.plot
1064+
sage: v.plot()
10641065
Graphics object consisting of 1 graphics primitive
1065-
sage: v.plot(points=True) # needs sage.plot
1066+
sage: v.plot(points=True)
10661067
Graphics object consisting of 1 graphics primitive
1067-
sage: v.plot() + v.plot(points=True, rgbcolor='red') # needs sage.plot
1068+
sage: v.plot() + v.plot(points=True, rgbcolor='red')
10681069
Graphics object consisting of 2 graphics primitives
1069-
sage: v.plot() + v.plot(points=True, rgbcolor='red', pointsize=50) # needs sage.plot
1070+
sage: v.plot() + v.plot(points=True, rgbcolor='red', pointsize=50)
10701071
Graphics object consisting of 2 graphics primitives
10711072
"""
10721073
from sage.plot.all import line, point

0 commit comments

Comments
 (0)