expr = Sum(1 / x, (x, 1, y))
plot(expr, (y, 2, 10),
    is_scatter=True, is_filled=True, title="$%s$" % latex(expr))
# Expected:
## Plot object containing:
## [0]: cartesian line: Sum(1/x, (x, 1, y)) for y over (2, 10)
