klotz: data analysis* + data visualization*

0 bookmark(s) - Sort by: Date ↓ / Title / - Bookmarks from other users for this tag

  1. This article explains Pair Plots (Scatter Matrices) in Python for exploratory data analysis, showing pairwise relationships between numerical variables using scatter plots and distribution plots.

    The article provides the following Python code using `seaborn` and `matplotlib` to create a pair plot:

    ```python
    import seaborn as sns
    import matplotlib.pyplot as plt
    import pandas as pd
    import numpy as np

    # Create some random data
    data = np.random.rand(100, 4)
    df = pd.DataFrame(data, columns= 'A', 'B', 'C', 'D' » )

    # Create the pair plot
    sns.pairplot(df)

    # Show the plot
    plt.show()
    ```
  2. This article explores gamma spectroscopy using a Radiacode 103G detector and Python, detailing data collection, analysis, and experiments with various objects to identify radioactive elements.
  3. Quadratic is a modern spreadsheet that combines the familiarity of a spreadsheet with the power of code, allowing you to work with data and code collaboratively in real-time. It supports popular programming languages like Python, SQL, and JavaScript, and offers features such as dynamic charts, APIs, multi-line formulas, and AI integration.

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: Tags: data analysis + data visualization

About - Propulsed by SemanticScuttle