Vl.new(width: 600, height: 300)
|> Vl.data_from_values(cars)
|> Vl.mark(:line)
|> Vl.encode_field(:x, "year", type: :temporal)
|> Vl.encode_field(:y, "miles_per_gallon", aggregate: :mean)Vl.new(width: 150, height: 150)
|> Vl.mark(:point)
|> Vl.encode_repeat(:x, :column, type: :quantitative)
|> Vl.encode_repeat(:y, :row, type: :quantitative)
|> Vl.encode_field(:color, "Species", type: :nominal)