From 9dfa3b4269633d00009cd3a6a04850003ee5e1b2 Mon Sep 17 00:00:00 2001 From: Agnieszka Stachowiak Date: Mon, 4 Nov 2024 11:20:46 +0100 Subject: [PATCH] dodalam wyswietlanie ramki danych w pliku code.py --- .idea/.gitignore | 8 ++++++++ .idea/SIAD.iml | 8 ++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 7 +++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ codes/code.py | 8 ++++++++ 7 files changed, 51 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/SIAD.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/SIAD.iml b/.idea/SIAD.iml new file mode 100644 index 0000000..d9e6024 --- /dev/null +++ b/.idea/SIAD.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f1bf6fa --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..b3fa9ea --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..c8397c9 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/codes/code.py b/codes/code.py index e69de29..c86f707 100644 --- a/codes/code.py +++ b/codes/code.py @@ -0,0 +1,8 @@ +import os +import pandas as pd + +filePath_df_binary_5050 = os.path.join('..', 'data1', 'diabetes_binary_5050split_health_indicators_BRFSS2021.csv') + +df_binary_5050 = pd.read_csv(filePath_df_binary_5050) + +print(df_binary_5050) \ No newline at end of file