lukawskikacper commited on
Commit
719a1bb
1 Parent(s): a00c75d

Fix README formatting

Browse files
Files changed (2) hide show
  1. .gitattributes +2 -0
  2. README.md +12 -12
.gitattributes CHANGED
@@ -53,3 +53,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
 
 
 
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
56
+ full_2023_remove_flawed_rows.csv filter=lfs diff=lfs merge=lfs -text
57
+ full_years_remove_flawed_rows.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -17,12 +17,12 @@ task_categories:
17
  - time-series-forecasting
18
  ---
19
 
20
- # Dataset Card for {{ pretty_name | default("Dataset Name", true) }}
21
 
22
  NOAA Buoy Data was downloaded, processed, and cleaned for tasks pertaining to tabular data. The data consists of meteorological measurements. There are two datasets
23
 
24
  1. From 1980 through 2022 (denoted with "years" in file names)
25
- 1. From Jan 2023 through end of Sept 2023 (denoted with "2023" in file names)
26
 
27
  The original intended use is for anomaly detection in tabular data.
28
 
@@ -33,9 +33,9 @@ The original intended use is for anomaly detection in tabular data.
33
  This dataset contains weather buoy data to be used in a tabular embedding scenarios.
34
  Buoy 42002 was chosen because it had many years of historical data and was still actively collecting information
35
 
36
- Here is the buoy's page and its historical data page.
37
- https://www.ndbc.noaa.gov/station_page.php?station=42002
38
- https://www.ndbc.noaa.gov/station_history.php?station=42002
39
 
40
  Only standard meteorological data and ocean data was downloaded. Downloaded started at 1980, which is the first full year of collecting wave information.
41
 
@@ -74,16 +74,16 @@ Data Downloaded on Oct 12 2023
74
  All code used to transform the data can be found in the buoy-python directory. This is NOT production code and the focus was on correct results and minimizing time spent writing cleaning code.
75
 
76
  1. #YY, MM, DD, hh, mm were concatenated to create a timestamp and stored in a new column.
77
- 1. From 1980 until 2005 there was no recording of minutes. Minutes for those years was set to 00.
78
- 1. All missing data was set to a blank value rather than an actual number
79
- 1. Remove all rows without wave data from all the data sets ( missing value in WVHT and DPD)
80
- 1. Columns MWD, DEWP, VIS, and TIDE were removed because of consistent missing values
81
- 1. From 2005 -> 2006 Wind direction goes from being called WD to WDIR
82
- 1. From 2006 -> 2007 Header goes from just 1 line with variable names to 2 lines with the second line being units.
83
 
84
  These steps were used to create full_2023_remove_flawed_rows, the 2023 months, and full_years_remove_flawed_rows the previous data going back to 1980
85
 
86
- Since the original purpose of this data was anomoly detection. The two data sets above received further processing.
87
 
88
  1. All data values were converted to Z-scores (file named zscore_2023)
89
  1. For 1980 - 2022, all rows with 2 or more fields with Z-scores > 2 were removed from the dataset (file named trimmed_zscores_years )
 
17
  - time-series-forecasting
18
  ---
19
 
20
+ # NOAA Buoy meterological data
21
 
22
  NOAA Buoy Data was downloaded, processed, and cleaned for tasks pertaining to tabular data. The data consists of meteorological measurements. There are two datasets
23
 
24
  1. From 1980 through 2022 (denoted with "years" in file names)
25
+ 2. From Jan 2023 through end of Sept 2023 (denoted with "2023" in file names)
26
 
27
  The original intended use is for anomaly detection in tabular data.
28
 
 
33
  This dataset contains weather buoy data to be used in a tabular embedding scenarios.
34
  Buoy 42002 was chosen because it had many years of historical data and was still actively collecting information
35
 
36
+ Here is the buoy's page and its historical data page:
37
+ - https://www.ndbc.noaa.gov/station_page.php?station=42002
38
+ - https://www.ndbc.noaa.gov/station_history.php?station=42002
39
 
40
  Only standard meteorological data and ocean data was downloaded. Downloaded started at 1980, which is the first full year of collecting wave information.
41
 
 
74
  All code used to transform the data can be found in the buoy-python directory. This is NOT production code and the focus was on correct results and minimizing time spent writing cleaning code.
75
 
76
  1. #YY, MM, DD, hh, mm were concatenated to create a timestamp and stored in a new column.
77
+ 2. From 1980 until 2005 there was no recording of minutes. Minutes for those years was set to 00.
78
+ 3. All missing data was set to a blank value rather than an actual number
79
+ 4. Remove all rows without wave data from all the data sets ( missing value in WVHT and DPD)
80
+ 5. Columns MWD, DEWP, VIS, and TIDE were removed because of consistent missing values
81
+ 6. From 2005 -> 2006 Wind direction goes from being called WD to WDIR
82
+ 7. From 2006 -> 2007 Header goes from just 1 line with variable names to 2 lines with the second line being units.
83
 
84
  These steps were used to create full_2023_remove_flawed_rows, the 2023 months, and full_years_remove_flawed_rows the previous data going back to 1980
85
 
86
+ Since the original purpose of this data was anomaly detection. The two data sets above received further processing.
87
 
88
  1. All data values were converted to Z-scores (file named zscore_2023)
89
  1. For 1980 - 2022, all rows with 2 or more fields with Z-scores > 2 were removed from the dataset (file named trimmed_zscores_years )