From 0f866ca5a2ca1a42299c74308cbbca70ddc3efe7 Mon Sep 17 00:00:00 2001 From: Eli Wang <37430922+EliWangC@users.noreply.github.com> Date: Mon, 19 Jun 2023 12:55:15 -0700 Subject: [PATCH 1/2] Fix the image links in README.md Since the sub branch edit-readme has been deleted, the 'edit-readme' part in the link paths needs to be changed to 'main' in order to display the images --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index de9e3d0..50cac79 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

- +

@@ -59,7 +59,7 @@ ad = AnalyticsDataframe(1000, 6) ad.predictor_matrix.head() ``` -![Initialized Predictor Matrix](https://github.com/Faye-yufan/analytics-dataset/blob/edit-readme/docs/images/initialized-predictor-matrix.png) +![Initialized Predictor Matrix](https://github.com/Faye-yufan/analytics-dataset/blob/main/docs/images/initialized-predictor-matrix.png) The predictor matrix is initialized with all null values. Now let's update the predictors with some distributions: @@ -70,7 +70,7 @@ for var in ['X1', 'X2', 'X3', 'X4', 'X5']: ad.update_predictor_categorical('X6', ["Red", "Yellow", "Blue"], [0.3, 0.4, 0.3]) ``` -![Updated Predictor Matrix](https://github.com/Faye-yufan/analytics-dataset/blob/edit-readme/docs/images/updated-predictor-matrix.png) +![Updated Predictor Matrix](https://github.com/Faye-yufan/analytics-dataset/blob/main/docs/images/updated-predictor-matrix.png) Once we have a dataframe desired and would like to visualize it, we can do: @@ -78,7 +78,7 @@ Once we have a dataframe desired and would like to visualize it, we can do: df_visualization_bi(ad) ``` -![Bivariate Visualization Chart](https://github.com/Faye-yufan/analytics-dataset/blob/edit-readme/docs/images/bivariate-vis.png) +![Bivariate Visualization Chart](https://github.com/Faye-yufan/analytics-dataset/blob/main/docs/images/bivariate-vis.png) # Next Steps @@ -86,7 +86,7 @@ We plan to integrate an user interface to the library, aiming to let users confi ## Code Contributors -![Contributors](https://github.com/Faye-yufan/analytics-dataset/blob/edit-readme/docs/images/contributors.png) +![Contributors](https://github.com/Faye-yufan/analytics-dataset/blob/main/docs/images/contributors.png) ## License AutoGen is released under the MIT License. From a357a1662ae5e3a32d0c53290f432e3225257c9e Mon Sep 17 00:00:00 2001 From: Eli Wang <37430922+EliWangC@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:45:35 -0700 Subject: [PATCH 2/2] Skip testing Python 3.7 due to a known issue Please refer to this issue post: https://github.com/actions/setup-python/issues/682 --- .github/workflows/unit.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 6abae2d..10cab56 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -15,7 +15,6 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: - "3.6" - - "3.7" - "3.8" - "3.9" - "3.10"