Line Chart with PointsΒΆ

This chart shows a simple line chart with points marking each value.

import altair as alt
import numpy as np
import pandas as pd

x = np.arange(100)
source = pd.DataFrame({
  'x': x,
  'f(x)': np.sin(x / 5)
})

alt.Chart(source).mark_line(point=True).encode(
    x='x',
    y='f(x)'
)