A library providing frequently used functions in data analysis for YESlab members and other researchers
Project description
yescarpenter
This library provides some frequent used functions for YESlab members and other researchers, including data processing and analyses
Installation
From PyPI
Users can install it using pip:
pip install yescarpenter
Functions
perform_pca
This function leverages scikit-learn to perform a tailored PCA analysis (e.g., with rotation to maximize variance)
Usage:
import pandas as pd
from yescarpenter import perform_pca
# Create a sample DataFrame
data = pd.DataFrame({
'feature1': [1, 2, 3, 4],
'feature2': [2, 3, 4, 5],
'feature3': [3, 4, 5, 6]
})
# Perform PCA with 2 components
loadings, explained_variance, components = perform_pca(data, n_components=2)
print("Loadings:\n", loadings)
print("Explained Variance:\n", explained_variance)
print("Components:\n", components)
create_scree_plot
This function creates a scree plot to visualize the explained variance of each principal component.
scree_plot(explained_variance, n_components)
pc_plot
Create a plot to visualize the PCA loadings.
pc_plot(loadings, df)
RSA Functions
clean_data_df
This function removes rows containing NaN or infinite values from a pandas DataFrame, ensuring clean data for analysis.
def clean_data_df(df):
"""
Remove rows with NaN or inf values in DataFrame.
Parameters:
-----------
df : pandas.DataFrame
Input DataFrame to clean
Returns:
--------
pandas.DataFrame
Cleaned DataFrame with NaN and infinite values removed
"""
clean_data_np
This function removes rows containing NaN or infinite values from a numpy array, ensuring clean data for analysis.
def clean_data_np(data):
"""
Remove rows with NaN or inf values from numpy array.
Parameters:
-----------
data : numpy.ndarray
Input array to clean
Returns:
--------
numpy.ndarray
Cleaned array with NaN and infinite values removed
"""
get_triangular_matrix
This function extracts the upper triangular part of a square matrix (excluding the diagonal), commonly used in RDM analysis.
def get_triangular_matrix(full_rdm):
"""
Convert a full RDM to a triangular matrix (flattened upper triangle).
Parameters:
-----------
full_rdm : numpy.ndarray
Square matrix (RDM) to extract upper triangle from
Returns:
--------
numpy.ndarray
1D array containing upper triangular values (excluding diagonal)
"""
standardize_rdms
This function standardizes RDMs to zero mean and unit variance using their upper triangular values, preparing them for statistical analysis.
def standardize_rdms(rdm_dict):
"""
Standardize each RDM to zero mean and unit variance using upper triangular values.
Parameters:
-----------
rdm_dict : dict
Dictionary of {rdm_name: rdm_matrix}
Returns:
--------
dict
Dictionary of {rdm_name: standardized_flattened_rdm}
"""
construct_RDM
This function constructs a Representational Dissimilarity Matrix (RDM) from data using various distance metrics.
def construct_RDM(data, n_target, method="euclidean", draw=True):
"""
Construct a Representational Dissimilarity Matrix (RDM) from data.
Parameters:
-----------
data : array-like
Input data where each row is a stimulus/target and each column is a feature
n_target : int
Expected number of targets/stimuli in the data
method : str, default="euclidean"
Distance metric to use ('euclidean', 'cityblock', 'cosine', 'spearman')
draw : bool, default=True
Whether to display a heatmap of the resulting RDM
Returns:
--------
numpy.ndarray
Square RDM matrix of shape (n_target, n_target)
"""
Usage:
# Example usage
import numpy as np
from yescarpenter import construct_RDM
data = np.random.rand(10, 5) # 10 pictures, 5 ratings
n_target = 10
rdm = construct_RDM(data, n_target, method="euclidean")
draw_heatmap
This function creates a heatmap visualization of an RDM or any square matrix.
def draw_heatmap(rdm, title=None, cmap="viridis", cbar=True):
"""
Draw a heatmap of the RDM.
Parameters:
-----------
rdm : numpy.ndarray
Square matrix to visualize
title : str, optional
Title for the heatmap
cmap : str, default="viridis"
Colormap for the heatmap
cbar : bool, default=True
Whether to show the colorbar
Returns:
--------
None
Displays the heatmap plot
"""
convert_RDM_to_vector
This function converts a square RDM to a vector by extracting the lower triangular part (excluding diagonal).
def convert_RDM_to_vector(rdm):
"""
Convert a square RDM to a vector by removing the upper triangle.
Parameters:
-----------
rdm : numpy.ndarray
Square RDM matrix
Returns:
--------
numpy.ndarray
1D vector of length n*(n-1)/2 containing lower triangular values
"""
shuffle_rdm
This function randomly permutes the rows and columns of an RDM while maintaining its structure, used for permutation testing.
def shuffle_rdm(rdm, random_state=None):
"""
Randomly shuffle the rows and columns of an RDM.
Parameters:
-----------
rdm : numpy.ndarray
Square RDM matrix to shuffle
random_state : int, optional
Random seed for reproducibility
Returns:
--------
numpy.ndarray
Shuffled RDM matrix
"""
mantel_permutation
This function performs Mantel permutation tests to assess the statistical significance of correlations between two RDMs.
def mantel_permutation(matrix1, matrix2, n_permutations=1000, random_state=None):
"""
Perform Mantel permutations to calculate Spearman correlations.
Parameters:
-----------
matrix1 : numpy.ndarray
First distance matrix (square, symmetric)
matrix2 : numpy.ndarray
Second distance matrix (square, symmetric, same size as matrix1)
n_permutations : int, default=1000
Number of permutations for statistical testing
random_state : int, optional
Random seed for reproducibility
Returns:
--------
permuted_correlations : numpy.ndarray
Array of permuted Spearman correlation values
observed_correlation : float
Observed Spearman correlation between original matrices
p_value : float
P-value representing significance of the observed correlation
"""
do_RSA
This function calculates the Spearman correlation between two RDMs and performs Mantel permutation testing to assess statistical significance.
def do_RSA(matrix1, matrix2, n_permutations=1000, random_state=None, plot_histogram=True):
"""
Perform Representational Similarity Analysis (RSA) with permutation testing.
Parameters:
-----------
matrix1 : numpy.ndarray
First distance matrix (square, symmetric)
matrix2 : numpy.ndarray
Second distance matrix (square, symmetric, same size as matrix1)
n_permutations : int, default=1000
Number of permutations for statistical testing
random_state : int, optional
Random seed for reproducibility
plot_histogram : bool, default=True
Whether to display the permutation histogram
Returns:
--------
permuted_correlations : numpy.ndarray
Array of permuted Spearman correlation values
observed_correlation : float
Observed Spearman correlation between original matrices
p_value : float
P-value representing significance of the observed correlation
"""
Usage:
do_RSA(rdm1, rdm2, n_permutations=1000, random_state=None)
permutation_histogram
This function plots the histogram of null distribution from permutation testing, with the observed value and p-value marked.
def permutation_histogram(r, perm_r, perm_p=None):
"""
Plot the histogram of permutation results.
Parameters:
-----------
r : float
Observed correlation value
perm_r : numpy.ndarray
Array of permuted correlation values (null distribution)
perm_p : float, optional
P-value to display on the plot
Returns:
--------
None
Displays the histogram plot
"""
Usage:
permutation_histogram(r, perm_r)
r: The observed value.perm_r: The null distribution, which consists of the iterated surrogated values
maximal_permutation_test
This function addresses multiple comparison problems by using the maximal statistic approach, providing an alternative to Bonferroni correction.
def maximal_permutation_test(data, iv_single, iv_multiplecomp, n_perm=1000, method="euclidean"):
"""
Perform maximal permutation test for multiple comparison correction.
Parameters:
-----------
data : pandas.DataFrame
Data where each row is a subject and each column is a variable
iv_single : str
Column name of the independent variable to be permuted
iv_multiplecomp : list
List of column names for variables involved in multiple comparisons
n_perm : int, default=1000
Number of permutations
method : str, default="euclidean"
Distance metric for RDM construction
Returns:
--------
perm_r : numpy.ndarray
Array of maximal permuted correlation values
perm_p : float
P-value from maximal permutation test
observed_r : dict
Dictionary of observed correlations for each comparison
"""
Usage:
[perm_r, perm_p, observed_r] = maximal_permutation_test(data, iv_single, iv_multiplecomp, nperm)
- data: For IS-RSA, each row is a subject, while each column is a variable. For example, if you have 20 subjects and 5 variables, the shape of data is (20, 5).
- iv_single: the independent variable that will be shuffled and compare across iv_multiplecomp
- iv_multiplecomp: the independent variable that are inter-related and elicit the multiple comparison problem
- n_perm: number of permutation
align_data
This function aligns different sources of data based on shared identifiers, handling missing values and ensuring consistent ordering across datasets.
*def align_data(data_inputs):
"""
Align multiple datasets based on shared row identifiers and valid (non-NA) rows.
Parameters:
-----------
*data_inputs : dict
Variable number of dictionaries, each containing:
- 'data': numpy array or pandas DataFrame
- 'order': list/array of row identifiers matching the data rows
Returns:
--------
list
List of aligned data objects (same type as input), filtered to shared identifiers
"""
Usage:
aligned_cong_fec, aligned_vgg, aligned_sem = align_data(
{'data': cong_fec['Vote share percentage'].values, 'order': cong_fec['Image_name'].values},
{'data': response, 'order': vgglist['image_name'].values},
{'data': sememb, 'order': sem_imgname}
)
print(aligned_cong_fec.shape, aligned_vgg.shape, aligned_sem.shape)
- You can put as many data as you want. Each input has to be a dictionary with two keys: 'data' and 'order'.
variance_partitioning
This function performs variance partitioning analysis, which is useful for understanding how much variance in a dependent variable can be explained by one or more predictors.
def variance_partitioning(DV_rdms, rdm_dict, plot_title='RDMs Contributions', print_results=False):
"""
Performs regression analysis to compare the contributions of multiple RDMs to dependent variable RDMs.
Parameters:
-----------
DV_rdms : dict
Dictionary of dependent variable RDMs {dv_name: rdm_matrix}
rdm_dict : dict
Dictionary of predictor RDMs {rdm_name: rdm_matrix}
plot_title : str, default='RDMs Contributions'
Title for the contribution plot
print_results : bool, default=False
Whether to print detailed regression summaries
Returns:
--------
results_df : pandas.DataFrame
DataFrame with R-squared results and contributions
"""
calculate_r_squared_loss
This utility function calculates the difference in R-squared values between full and reduced regression models, used in variance partitioning.
def calculate_r_squared_loss(full_model, reduced_model):
"""
Calculate R-squared loss between full and reduced models.
Parameters:
-----------
full_model : statsmodels regression model
The full regression model
reduced_model : statsmodels regression model
The reduced regression model (with one predictor removed)
Returns:
--------
float
Difference in R-squared values (exclusive contribution)
"""
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yescarpenter-0.3.4.tar.gz.
File metadata
- Download URL: yescarpenter-0.3.4.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23d1531d398e86f1cc53dee87fb9e5fe9833aa0287068bfbc67de6700f6f484a
|
|
| MD5 |
10cbd2bb609e3abb3577358ad6aee431
|
|
| BLAKE2b-256 |
dbeacf2cd4b8c49cdeffa1328620ab56edd5ac050f39ad00a85c69ba2f82141b
|
File details
Details for the file yescarpenter-0.3.4-py3-none-any.whl.
File metadata
- Download URL: yescarpenter-0.3.4-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4346a64846d0feb4d4313936f0500363109cb48fff1d289ff5693befbab01fc4
|
|
| MD5 |
c78a66a64145d77ecfa1ebfb533a561e
|
|
| BLAKE2b-256 |
4c9c0aa1ac316e0c6007213d649a486aea3e57f0184680346ecc9a66d77b97bf
|