Skip to content

qqnorm

# Makie.qqnormFunction.
julia
qqnorm(y; kwargs...)

Shorthand for qqplot(Normal(0,1), y), i.e., draw a Q-Q plot of y against the standard normal distribution. See qqplot for more details.

Plot type

The plot type alias for the qqnorm function is QQNorm.

source


Examples

Test if xs is normally distributed.

julia
using CairoMakie
xs = 2 .* randn(100) .+ 3

qqnorm(xs, qqline = :fitrobust)

Attributes

color

Defaults to @inherit linecolor

Control color of both line and markers (if markercolor is not specified).

cycle

Defaults to [:color]

No docs available.

depth_shift

Defaults to 0.0

adjusts the depth value of a plot after all other transformations, i.e. in clip space, where 0 <= depth <= 1. This only applies to GLMakie and WGLMakie and can be used to adjust render order (like a tunable overdraw).

fxaa

Defaults to true

adjusts whether the plot is rendered with fxaa (anti-aliasing, GLMakie only).

inspectable

Defaults to true

sets whether this plot should be seen by DataInspector.

inspector_clear

Defaults to automatic

Sets a callback function (inspector, plot) -> ... for cleaning up custom indicators in DataInspector.

inspector_hover

Defaults to automatic

Sets a callback function (inspector, plot, index) -> ... which replaces the default show_data methods.

inspector_label

Defaults to automatic

Sets a callback function (plot, index, position) -> string which replaces the default label generated by DataInspector.

linestyle

Defaults to nothing

No docs available.

linewidth

Defaults to @inherit linewidth

No docs available.

marker

Defaults to @inherit marker

No docs available.

markercolor

Defaults to automatic

No docs available.

markersize

Defaults to @inherit markersize

No docs available.

model

Defaults to automatic

Sets a model matrix for the plot. This overrides adjustments made with translate!, rotate! and scale!.

overdraw

Defaults to false

Controls if the plot will draw over other plots. This specifically means ignoring depth checks in GL backends

space

Defaults to :data

sets the transformation space for box encompassing the plot. See Makie.spaces() for possible inputs.

ssao

Defaults to false

Adjusts whether the plot is rendered with ssao (screen space ambient occlusion). Note that this only makes sense in 3D plots and is only applicable with fxaa = true.

strokecolor

Defaults to @inherit markerstrokecolor

No docs available.

strokewidth

Defaults to @inherit markerstrokewidth

No docs available.

transformation

Defaults to automatic

No docs available.

transparency

Defaults to false

Adjusts how the plot deals with transparency. In GLMakie transparency = true results in using Order Independent Transparency.

visible

Defaults to true

Controls whether the plot will be rendered or not.