sol-eng / bike_predict

A demo of an end-to-end machine learning pipeline, using Posit Connect
92 stars 31 forks source link

Rename files in bike_predict to include number_prefix #16

Closed SamEdwardes closed 2 years ago

SamEdwardes commented 2 years ago

@akgold I am considering renaming the files in bike predict to be a bit easier to follow (in my opinion). For example, current file tree looks like this:

├── bike_predict
│   ├── API
│   │   ├── manifest.json
│   │   ├── plumber.R
│   │   └── rsconnect
│   ├── App
│   │   ├── client_app
│   │   └── model_performance
│   ├── bike_predict.Rproj
│   ├── Deploy
│   │   ├── deploy.Rmd
│   │   ├── Deploy.Rproj
│   │   ├── renv
│   │   ├── renv.lock
│   │   └── rsconnect
│   ├── EDA
│   │   ├── EDA.Rmd
│   │   ├── model.RDS
│   │   └── renv.lock
....

I propose to rename things to look like this:

├── README.md
├── content
│   ├── 01-etl-raw-data-ingest
│   │   ├── ETL_clean_raw.qmd
│   │   └── manifest.json
│   ├── 02-etl-clean-data
│   │   ├── ETL_clean_raw.qmd
│   │   └── manifest.json

And so on...

I think this will make it a bit easier to follow. Right now it is hard to see how things fit together unless you look at the raw README file.

Just wanted your buy in before making any changes.

SamEdwardes commented 2 years ago

Will be addressed in #15