Skip to content

Latest commit

 

History

History
79 lines (79 loc) · 2.76 KB

File metadata and controls

79 lines (79 loc) · 2.76 KB
PySnippets
├── pysnippets
│   ├── __init__.py
│   ├── documentation.md
│   ├── strings/
│   │   ├── __init__.py
│   │   ├── strings.md
│   │   ├── list_to_comma_string.py
│   │   ├── string_manipulation.py
│   ├── system/
│   │   ├── __init__.py
│   │   ├── system.md
│   │   ├── process_manager.py
│   │   ├── system_resource_monitor.py
│   │   ├── disk_space_checker.py
│   │   ├── temporary_file_handler.py
│   │   ├── environment_variable_manager.py
│   ├── stats/
│   │   ├── __init__.py
│   │   ├── stats.md
│   │   ├── quantile.py
│   │   ├── z_score_normalization.py
│   │   ├── variance.py
│   │   ├── standard_deviation.py
│   │   ├── mean_median_mode.py
│   ├── maths/
│   │   ├── __init__.py
│   │   ├── maths.md
│   │   ├── complex_number_operations.py
│   │   ├── polar_rectangular_conversion.py
│   │   ├── matrix_operations.py
│   │   ├── determinant.py
│   ├── numbers/
│   │   ├── __init__.py
│   │   ├── numbers.md
│   │   ├── number_formatting.py
│   ├── files/
│   │   ├── __init__.py
│   │   ├── files.md
│   │   ├── file_organizer.py
│   │   ├── file_reader.py
│   ├── analysis/
│   │   ├── __init__.py
│   │   ├── datautils.md
│   │   ├── datautils.py
│   │   ├── modelutils.md
│   │   ├── modelutils.py
├── Tests
│   ├── __init__.py 
│   ├── analysis/
│   │   ├── test_analysis.py
│   ├── files/
│   │   ├── test_file_organizer.py
│   │   ├── test_file_reader.py
│   ├── maths/
│   │   ├── test_complex_number.py
│   │   ├── test_matrix_operations.py
│   ├── numbers/
│   │   ├── test_number_formattig.py
│   ├── stats/
│   │   ├── test_data_distribution.py
│   │   ├── test_statistics.py
│   ├── strings/
│   │   ├── test_string_manipulation.py
│   │   ├── test_list_to_comma_string.py
│   ├── system/
│   │   ├── test_process_manager.py
│   │   ├── test_system_resource_monitor.py
│   │   ├── test_disk_space_checker.py
│   │   ├── test_environment_variable_manager.py
├───│   ├── test_temporary_file_handler.py
├── LICENSE
├── setup.py
├── README.md
├── Structure.md
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md