Spaces:
Sleeping
Sleeping
Commit ·
52e54aa
0
Parent(s):
Initial deploy of Eclipse v2 Streamlit app
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +13 -0
- .github/workflows/static.yml +43 -0
- .ipynb_checkpoints/CNN-checkpoint.ipynb +3 -0
- .streamlit/config.toml +7 -0
- .streamlit/pages.toml +25 -0
- Artificial_Neural_Networks.html +3 -0
- Artificial_Neural_Networks.ipynb +3 -0
- C1_code.html +3 -0
- C1_code.ipynb +3 -0
- C2_ReLU.html +3 -0
- C2_ReLU.ipynb +3 -0
- C3_Tensor_operations.html +3 -0
- C3_Tensor_operations.ipynb +3 -0
- C4_Tensor_Arithmetics.html +3 -0
- C4_Tensor_Arithmetics.ipynb +3 -0
- CNN.html +3 -0
- CNN.ipynb +3 -0
- Day1_Python_basics.html +3 -0
- Day1_Python_basics.ipynb +3 -0
- Decision_Tree.html +3 -0
- Decision_Tree.ipynb +3 -0
- EDA.html +3 -0
- EDA.ipynb +3 -0
- Eclipse_logo.png +3 -0
- Hierarchical_clustering.html +3 -0
- Hierarchical_clustering.ipynb +3 -0
- Home.py +4 -0
- Jupyter_Intro.html +3 -0
- Jupyter_Intro.ipynb +3 -0
- KNN.html +3 -0
- KNN.ipynb +3 -0
- K_means.html +3 -0
- K_means.ipynb +3 -0
- Linear_Regression.html +3 -0
- Linear_Regression.ipynb +3 -0
- LogReg.html +3 -0
- Logistic_Regression.ipynb +3 -0
- Logistic_regression.html +3 -0
- Mall_Customers.csv +3 -0
- NLP_RASA.html +3 -0
- NLP_RASA.ipynb +3 -0
- NLP_Tfidf.html +3 -0
- NLP_Tfidf.ipynb +3 -0
- Ninad_photo.jpeg +3 -0
- Null.zip +3 -0
- Null/Salaries.csv +3 -0
- Null/Salaries_new.csv +3 -0
- Null/Salaries_new.xlsx +3 -0
- Null/mtcars.csv +3 -0
- Null/mtcars.xlsx +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.ipynb filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.html filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.ico filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.xlsx filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.svg filter=lfs diff=lfs merge=lfs -text
|
.github/workflows/static.yml
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Simple workflow for deploying static content to GitHub Pages
|
| 2 |
+
name: Deploy static content to Pages
|
| 3 |
+
|
| 4 |
+
on:
|
| 5 |
+
# Runs on pushes targeting the default branch
|
| 6 |
+
push:
|
| 7 |
+
branches: ["main"]
|
| 8 |
+
|
| 9 |
+
# Allows you to run this workflow manually from the Actions tab
|
| 10 |
+
workflow_dispatch:
|
| 11 |
+
|
| 12 |
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
| 13 |
+
permissions:
|
| 14 |
+
contents: read
|
| 15 |
+
pages: write
|
| 16 |
+
id-token: write
|
| 17 |
+
|
| 18 |
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
| 19 |
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
| 20 |
+
concurrency:
|
| 21 |
+
group: "pages"
|
| 22 |
+
cancel-in-progress: false
|
| 23 |
+
|
| 24 |
+
jobs:
|
| 25 |
+
# Single deploy job since we're just deploying
|
| 26 |
+
deploy:
|
| 27 |
+
environment:
|
| 28 |
+
name: github-pages
|
| 29 |
+
url: ${{ steps.deployment.outputs.page_url }}
|
| 30 |
+
runs-on: ubuntu-latest
|
| 31 |
+
steps:
|
| 32 |
+
- name: Checkout
|
| 33 |
+
uses: actions/checkout@v4
|
| 34 |
+
- name: Setup Pages
|
| 35 |
+
uses: actions/configure-pages@v5
|
| 36 |
+
- name: Upload artifact
|
| 37 |
+
uses: actions/upload-pages-artifact@v3
|
| 38 |
+
with:
|
| 39 |
+
# Upload entire repository
|
| 40 |
+
path: '.'
|
| 41 |
+
- name: Deploy to GitHub Pages
|
| 42 |
+
id: deployment
|
| 43 |
+
uses: actions/deploy-pages@v4
|
.ipynb_checkpoints/CNN-checkpoint.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72ddacd4b6598d978f7f1da6c4fb11eb465588357e9d5aeb2b6d068e7b14c1d1
|
| 3 |
+
size 818418
|
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[theme]
|
| 2 |
+
primaryColor="#6366F1"
|
| 3 |
+
backgroundColor="#0F172A"
|
| 4 |
+
secondaryBackgroundColor="#1E293B"
|
| 5 |
+
textColor="#F1F5F9"
|
| 6 |
+
font="sans serif"
|
| 7 |
+
base="dark"
|
.streamlit/pages.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[[pages]]
|
| 2 |
+
path = "app.py"
|
| 3 |
+
name = "Home"
|
| 4 |
+
icon = "🏠"
|
| 5 |
+
|
| 6 |
+
[[pages]]
|
| 7 |
+
path = "pages/0_Python_basics.py"
|
| 8 |
+
name = "Page 2"
|
| 9 |
+
icon = ":books:"
|
| 10 |
+
|
| 11 |
+
[[pages]]
|
| 12 |
+
name = "Supervised ML"
|
| 13 |
+
icon = "🎈️"
|
| 14 |
+
is_section = true
|
| 15 |
+
|
| 16 |
+
# Pages after an `is_section = true` will be indented
|
| 17 |
+
[[pages]]
|
| 18 |
+
name = "pages/1_Linear_Regression.py"
|
| 19 |
+
icon = "💪"
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
# Unless you explicitly say in_section = false`
|
| 23 |
+
[[pages]]
|
| 24 |
+
name = "pages/Contact_me.py"
|
| 25 |
+
in_section = false
|
Artificial_Neural_Networks.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4aaed65707df7f8bab480de49aff096dbb980b101aceb1aea0270102852898aa
|
| 3 |
+
size 1283216
|
Artificial_Neural_Networks.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58f6ab6dc32fb77f2116c576a44a5729c00d1df4b812eb10c5c22b268b6dac57
|
| 3 |
+
size 700376
|
C1_code.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c39d8f1581a2ee041a438a191ab51ebd79c7b7a13ab2be26d1a478f97da8eef0
|
| 3 |
+
size 298571
|
C1_code.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88d64d26c970406a8a062325ebe866ff86be56a28adbd1d78657f91e1b65bf0a
|
| 3 |
+
size 9954
|
C2_ReLU.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0dab6460f485137815dd9a3683ea425bb4590967f882992b29ad7c6dea9d534
|
| 3 |
+
size 434967
|
C2_ReLU.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51bb7815a66e0548630a80169f00c3f6df9431892fe9fde260b516dd69352d01
|
| 3 |
+
size 143128
|
C3_Tensor_operations.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb47c6737a1dae34f86b840486e512e3d8cd9f7be8374a667887830604ca24df
|
| 3 |
+
size 356723
|
C3_Tensor_operations.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0daf365bd00311167a31b027143e87b679ad3d59222566463cc03e9b30eaa3c6
|
| 3 |
+
size 33849
|
C4_Tensor_Arithmetics.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6cfa23c2cc43172d4a521cc97e3baebe58c4c77d45b2e94b797fe9b07ec4d84
|
| 3 |
+
size 301092
|
C4_Tensor_Arithmetics.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4a3f138d40a1e26dc2f0af47c13718428671132d66412beb027d75730365e85
|
| 3 |
+
size 10722
|
CNN.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36341d0be48384ae1a33d594de3d44f8738508bd113950b778d15baf64277f9a
|
| 3 |
+
size 1105112
|
CNN.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72ddacd4b6598d978f7f1da6c4fb11eb465588357e9d5aeb2b6d068e7b14c1d1
|
| 3 |
+
size 818418
|
Day1_Python_basics.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6bd38052d9394c07063121992f41c3470ce152b5aa0a29d70fdfa09cdf8bcfd
|
| 3 |
+
size 709281
|
Day1_Python_basics.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b00c9201684bdadea3254ed195a4ab9b7424b42202ebf505b23e095c37c15564
|
| 3 |
+
size 49966
|
Decision_Tree.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fff21ff65a88a9762ac08c5977f3bf14e49b8b17afdf6c7649984ccfe68f4cdf
|
| 3 |
+
size 487085
|
Decision_Tree.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4819f309a2a6e16993d3740cf935bf1c6af3380c980364dd136a741ef62e5a7
|
| 3 |
+
size 195269
|
EDA.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d60fbc3d315fa3be07fd8293f3f1e2f941dbaaca995373ccbcfb02a4bcbd9bf
|
| 3 |
+
size 434164
|
EDA.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3ec2a75a757d7facfaf6c4ebe178746349659a6f5245fa076971214106f7b77
|
| 3 |
+
size 153487
|
Eclipse_logo.png
ADDED
|
Git LFS Details
|
Hierarchical_clustering.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae676ed058de6e66a3cb5a3816d3f192205d471cb3e3a8d26697e8d30c803cb7
|
| 3 |
+
size 681295
|
Hierarchical_clustering.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e3a6211e2fb75a74aa9e0e532ef0af030444f65e13c1e033b685cc70fa19759
|
| 3 |
+
size 493148
|
Home.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
def app():
|
| 4 |
+
st.write('Home')
|
Jupyter_Intro.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7404bbb6b932319af230e78a12ac8b00376c921c27417c118164491c5baadbc7
|
| 3 |
+
size 2863509
|
Jupyter_Intro.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91048248ce36075b653fae3b70b7e850b61bf65ab62174bd8d30962a29e2306a
|
| 3 |
+
size 2609745
|
KNN.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8be5307d0d6608eb9a9c57eb0834d4d0f15dfca26df370d1ff34163d845c1bf
|
| 3 |
+
size 605767
|
KNN.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d1aa27ed95a03138e7eed8d5498037bc2163fd4c74d698cb041250137cc6f2c
|
| 3 |
+
size 367090
|
K_means.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6afc2a947a68dcbf0a49c75c5ed6bb42c974233a8a955843babfd428a3cac5dc
|
| 3 |
+
size 682954
|
K_means.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c22d21c7aaac802b9e83a1c443251549b2ec84857ee284b5eb5448ebbd0e8876
|
| 3 |
+
size 408615
|
Linear_Regression.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aba11c391ba7ce617611a6c920cf2cb70f263773ca1f53579e26591f9764711d
|
| 3 |
+
size 736361
|
Linear_Regression.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7fcbed27d1af258470ae7afcd7ab39fc46d4369702c8c87d1a85214087ff16a
|
| 3 |
+
size 131768
|
LogReg.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22ff349a98bf059eedf37cc871b0c6a237dcabd4001e430463166a823728672b
|
| 3 |
+
size 728339
|
Logistic_Regression.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fcb6ac16763e4bc64118de77fbb38f82c5e64e0014f53a5d1abec147b101500
|
| 3 |
+
size 644853
|
Logistic_regression.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe83434f4aa3b542dc3f5a1d75b7a9eb9989a1aa72137766fe59a1ba926d1e7f
|
| 3 |
+
size 912035
|
Mall_Customers.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:194975e1f84d29ee7a99ca72bc14dcd55af355384f35171ef7e9e053ac7f6612
|
| 3 |
+
size 3780
|
NLP_RASA.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b272cb965b46e030beca31f995999dfc3c6a5bf9a8eb7a0d53e3d498c9b7a000
|
| 3 |
+
size 1572095
|
NLP_RASA.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e051e7ebd4be79d08b45c71ff141d8cdb51127605d2de4cbcd298927711c38c
|
| 3 |
+
size 1303601
|
NLP_Tfidf.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abce5b304fb9bb464f03457b10bb61aed9f963757d7a9b42f4692d83e320acdd
|
| 3 |
+
size 1190884
|
NLP_Tfidf.ipynb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3dd59a6d2e39370a2a2670fededab9f4523c6491b88dd4dc76fb8ff26578343
|
| 3 |
+
size 916226
|
Ninad_photo.jpeg
ADDED
|
Git LFS Details
|
Null.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79707ceea56b0efc404f987d957ed201b97c933e56b2486a0c9f7b16ab6833ba
|
| 3 |
+
size 29778
|
Null/Salaries.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af46739b4056c97cbd277262cd987cf1cd5e6b5ce3b831efe1050a31b57e6068
|
| 3 |
+
size 2128
|
Null/Salaries_new.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7aaa366d5ad80fd8fe8fd9ae088ce0178d50516bc66f9522a9e1827fca97d8b
|
| 3 |
+
size 2108
|
Null/Salaries_new.xlsx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:428c9af9958996660e851f52f0513bd7b42c562e5655d5a5a27c61d3f045a7b5
|
| 3 |
+
size 13651
|
Null/mtcars.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:450a97ba6b438c6ea5bdf2aaac7eab0ecbbf812b5ff74b56f62dcf0a0c7eb0e5
|
| 3 |
+
size 1303
|
Null/mtcars.xlsx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c9b85d55cab3325b2afb16a60223698896458a00e779cac763cfb74070da5bd
|
| 3 |
+
size 10054
|