Add documentation for the DataFrame module and include it in the library

This commit is contained in:
Palash Tyagi 2025-06-22 05:00:59 +01:00
parent 49f7558225
commit b80d5ab381
2 changed files with 5 additions and 0 deletions

2
src/dataframe/mod.rs Normal file
View File

@ -0,0 +1,2 @@
//! This module provides the DataFrame structure for handling tabular data with mixed types.
pub mod df;

View File

@ -1,5 +1,8 @@
#![doc = include_str!("../README.md")]
/// Documentation for the [`crate::dataframe`] module.
pub mod dataframe;
/// Documentation for the [`crate::matrix`] module.
pub mod matrix;