About 544 results
Open links in new tab
  1. seaborn.regplot — seaborn 0.13.2 documentation

    Combine regplot() and FacetGrid to plot multiple linear relationships in a dataset. jointplot. Combine regplot() and JointGrid (when used with kind="reg"). pairplot. Combine regplot() and …

  2. Visualizing regression models — seaborn 0.11.2 documentation

    Using the pairplot() function with kind="reg" combines regplot() and PairGrid to show the linear relationship between variables in a dataset. Take care to note how this is different from lmplot().

  3. seaborn.regplot — seaborn 0.11.2 documentation

    >>> ax = sns. regplot (x = "size", y = "total_bill", data = tips, x_jitter =. 1) Plot with a discrete x variable showing means and confidence intervals for unique values: >>> ax = sns . regplot ( x …

  4. Estimating regression fits — seaborn 0.13.2 documentation

    The two functions that can be used to visualize a linear fit are regplot() and lmplot(). In the simplest invocation, both functions draw a scatterplot of two variables, x and y, and then fit the …

  5. seaborn.lmplot — seaborn 0.13.2 documentation

    See the regplot() docs for demonstrations of various options for specifying the regression model, which are also accepted here. Plot a regression fit over a scatter plot: sns . lmplot ( data = …

  6. Overview of seaborn plotting functions — seaborn 0.13.2 …

    For example, displot() is the figure-level function for the distributions module. Its default behavior is to draw a histogram, using the same code as histplot() behind the scenes: sns . displot ( …

  7. seaborn.relplot — seaborn 0.13.2 documentation

    This function provides access to several different axes-level functions that show the relationship between two variables with semantic mappings of subsets. The kind parameter selects the …

  8. seaborn.FacetGrid — seaborn 0.13.2 documentation

    To draw a plot on every facet, pass a function and the name of one or more columns in the dataframe to FacetGrid.map(): g = sns . FacetGrid ( tips , col = "time" , row = "sex" ) g . map ( …

  9. seaborn.scatterplot — seaborn 0.13.2 documentation

    Control the specific markers used to map the style variable by passing a Python list or dictionary of marker codes: markers = { "Lunch" : "s" , "Dinner" : "X" } sns . scatterplot ( data = tips , x = …

  10. seaborn.regplot — seaborn 0.12.2 documentation

    Combine regplot() and FacetGrid to plot multiple linear relationships in a dataset. jointplot. Combine regplot() and JointGrid (when used with kind="reg"). pairplot. Combine regplot() and …

Refresh