Learn R Programming

PepMapViz (version 1.1.0)

combine_files_from_folder: Combine CSV and TXT Files from a Folder

Description

This function reads all CSV and TXT files from a specified folder and combines them into a single data.table.

Usage

combine_files_from_folder(folder_path)

Value

A data.table containing the combined data from all files.

Arguments

folder_path

The path to the folder containing the CSV or TSV files.

Examples

Run this code
folder_path <- ""
combined_df <- combine_files_from_folder(folder_path)
print(combined_df)

Run the code above in your browser using DataLab