initial commit phase 3 quant
This commit is contained in:
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
*.venv*
|
||||||
|
|
||||||
|
# Ignore specific environment files with secrets (.env is tracked with generic values)
|
||||||
|
.devcontainer/.env
|
||||||
|
.env*
|
||||||
|
.copilot/
|
||||||
|
|
||||||
|
# Ignore Jupyter Notebook checkpoints
|
||||||
|
.ipynb_checkpoints/
|
||||||
|
|
||||||
|
__marimo__
|
||||||
|
__pycache__/
|
||||||
|
|
||||||
|
data/
|
||||||
|
docker-volumes/
|
||||||
|
logs/
|
||||||
|
|
||||||
1
.python-version
Normal file
1
.python-version
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.12
|
||||||
22
00_qualtrics_validation.py
Normal file
22
00_qualtrics_validation.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import marimo
|
||||||
|
|
||||||
|
__generated_with = "0.19.2"
|
||||||
|
app = marimo.App(width="medium")
|
||||||
|
|
||||||
|
|
||||||
|
@app.cell
|
||||||
|
def _():
|
||||||
|
import marimo as mo
|
||||||
|
import polars as pl
|
||||||
|
import pandas as pd
|
||||||
|
import plotly as plt
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
@app.cell
|
||||||
|
def _():
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run()
|
||||||
24
pyproject.toml
Normal file
24
pyproject.toml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[project]
|
||||||
|
name = "Phase-3-Quant"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "Add your description here"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.12"
|
||||||
|
dependencies = [
|
||||||
|
"marimo>=0.18.0",
|
||||||
|
"matplotlib>=3.10.8",
|
||||||
|
"modin[dask]>=0.37.1",
|
||||||
|
"numpy>=2.3.5",
|
||||||
|
"ollama>=0.6.1",
|
||||||
|
"openai>=2.9.0",
|
||||||
|
"openpyxl>=3.1.5",
|
||||||
|
"pandas>=2.3.3",
|
||||||
|
"plotly>=6.5.1",
|
||||||
|
"polars>=1.37.1",
|
||||||
|
"pyzmq>=27.1.0",
|
||||||
|
"requests>=2.32.5",
|
||||||
|
"taguette>=1.5.1",
|
||||||
|
"wordcloud>=1.9.5",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user