Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmancio00/exam_masl_2023
https://github.com/cmancio00/exam_masl_2023
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cmancio00/exam_masl_2023
- Owner: cMancio00
- License: gpl-3.0
- Created: 2023-12-28T10:33:17.000Z (almost 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-30T18:07:55.000Z (12 months ago)
- Last Synced: 2023-12-31T18:47:48.348Z (12 months ago)
- Language: Jupyter Notebook
- Size: 383 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Esame Multivariate Analysis and Statistical Learning 2023
**Autore**:
- [Christian Mancini](https://github.com/cMancio00)# Cluster Analysis
Utilizzare il kernel descritto in seguito per eseguire il [Notebook](/MultiSampleSplitting.ipynb).
## Installazione dei requisiti per la riproduzione dei risultati.### Creazione dell' Ambiente Virtuale nella cartella cartella `.venv`
```bash
python3 -m venv .venv
```> Si consiglia di essere nella cartella di progetto per un'organizzazione più efficiente.
>> Avendo specificato un nome nascosto, il nome dell' ambiente Virtuale sarà il nome della cartella del progetto,
>> in questo caso `Exam_MASL_2023`### Collegare l' Ambiente Virtuale ad un Kernel di Jupyter
#### Attivare l'ambiente
```bash
source .venv/bin/activate
```
#### Installare il kernel di jupyter
```bash
pip install ipykernel
```#### Aggingere l'ambiente virtuale a jupyter con
```bash
python -Xfrozen_modules=off -m ipykernel install --user --name=Exam_MASL_2023
```
Stampando la lista dei kernel dovremmo ottenere il seguente risultato:```bash
jupyter kernelspec list
``````
0.00s - Debugger warning: It seems that frozen modules are being used, which may
0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off
0.00s - to python to disable frozen modules.
0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation.
Available kernels:
contest_masl_2023 /home/mancio/.local/share/jupyter/kernels/contest_masl_2023
python3 /home/mancio/.local/share/jupyter/kernels/python3```
### Installazione delle dipendenze
```bash
pip install --upgrade pip & pip install -r requirements.txt
```### Esportare il Notebook in PDF
```bash
jupyter nbconvert --to pdf ClusterAnalysis.ipynb --LatexPreprocessor.title "Cluster Analysis dei dati sulla depressione" --LatexPreprocessor.date "Dicembre 30, 2023" --LatexPreprocessor.author_names "Christian Mancini"```