https://github.com/denisecase/pro-analytics-level-1
https://github.com/denisecase/pro-analytics-level-1
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/denisecase/pro-analytics-level-1
- Owner: denisecase
- Created: 2023-12-31T19:06:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T16:00:52.000Z (almost 2 years ago)
- Last Synced: 2024-08-25T17:11:22.309Z (almost 2 years ago)
- Language: HTML
- Size: 2.13 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Professional Analytics - Level 1
[Professional Analytics](https://github.com/denisecase/pro-analytics)
## Contents
### Data Analytics
- [Analytics Data Cleaning](analytics-data-cleaning.md)
- [Analytics Data](analytics-data.md)
- [Analytics Statistics Basics](analytics-statistics-basics.md)
### Git and GitHub
- [Git Basics](git-basics.md)
- [GitHub Basics](github-basics.md)
- [GitHub Repositories](github-repos.md)
- [GitHub: Adding a File](github-add-file.md)
- [GitHub Pages](github-pages.md)
### Python
- [Python Basics](python-basics.md)
- [Python Collections](python-collections.md)
- [Python Datasets](python-datasets.md)
- [Python Execution](python-execution.md)
- [Python File I/O](python-file-io.md)
- [Python Functions](python-functions.md)
- [Python Modules and Packages](python-modules-packages.md)
- [Python Project Organization](python-project-organization.md)
- [Python Type Hints](python-type-hints.md)
### Python Standard Library
- [Standard Library Overview](std-lib.md)
### Python Environment Setup
- [Environment Setup: Jupyter](env-jupyter.md)
- [Environment Setup: Virtual Environments](env-virtual.md)
### Python External Libraries
- [Library: Pandas and Polars](lib-pandas-polars.md)
- [Library: Pandas and NumPy](lib-pandas-numpy.md)
- [Library: Matplotlib](lib-matplotlib.md)
- [Library: Seaborn](lib-seaborn.md)
### SQL
- [SQL and Python Integration](sql-python-integration.md)
### Development Tools
- [Development Tools: Linters and Formatters](dev-tools-linters-formatters.md)
### Development Editor: VS Code
- [Visual Studio Code](vscode.md)
## Managing This Repository
Before installing the linting tools, install Node.js on your system.
Download it from the [official Node.js website](https://nodejs.org/).
After installing Node.js,
use the following commands in PowerShell to install and run Markdown linting tools:
```powershell
# Install markdownlint-cli and Prettier globally
npm install -g markdownlint-cli prettier
# Run markdownlint on all markdown files in the directory (exclude node_modules)
markdownlint '**/*.md' --ignore node_modules
# Run Prettier to check all markdown files
prettier --check '**/*.md'
# Run Prettier to fix all markdown files
prettier --write '**/*.md'
```