Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AUDIT: lat_bins() #5

Closed
2 tasks done
LewisAJones opened this issue Jun 21, 2022 · 3 comments · Fixed by #8
Closed
2 tasks done

AUDIT: lat_bins() #5

LewisAJones opened this issue Jun 21, 2022 · 3 comments · Fixed by #8
Assignees

Comments

@LewisAJones
Copy link
Collaborator

LewisAJones commented Jun 21, 2022

The lat_bins() function is now ready for auditing. Sofía and Lucas could you please now audit the code/documentation and check it is behaving as expected?

Please also document any tests you throw at it and bugs you find. This will help with developing the automated testing for later.

For now, I would suggest creating your own branch and proofing the code there. However, if you prefer we can also meet online to discuss any issues that need resolving.

Thank you!!!

  • Sofía's audit complete
  • Lucas' audit complete
@Buffan3369
Copy link

Lewis, everything works perfectly well and all the documentations are clear! However, I have 2 sugestions:

  1. Although it doesn't change the output, line 60 and 65, you are using twice the name "df" for two different things, which may be a bit confusing. I would suggest changing the first one (name of the sequential vector giving the latitudinal scale) to something like "scl" or "lat_scale". I'm going to pull a request anyway.

  2. I totally understand your ambitions with the "fit" argument. The fact is that, if one user specifies a bin size that is not a factor of 180, the output will by default return an exact binning of that size, naturally ommiting extremal portions of the [-90, 90] latitudinal spectrum. There is no possibility to tune that (e.g. saying "I want the southern pole region to be included but not the northern pole one"). I'm wondering who would want to exclude some pre-defined regions like that, with the risk to loose samples that would fall there. I'm probably wrong but wouldn't it make more sense to just implement the "fit=TRUE" case as a conditionnal situation triggered by "size = x such as 180%%x != 0"?
    Otherwise, if one user REALLY wants a binnig that is not a factor of 180, maybe could we implement the possibility for him/her to choose the zones of the map to exclude? Do you see what I mean?

But again, the function works very well!

@LewisAJones LewisAJones linked a pull request Jun 21, 2022 that will close this issue
@LewisAJones
Copy link
Collaborator Author

Thanks for your thoughtful comments Lucas! I will address them point by point.

  1. I do not think this is really an issue. In fact, it prevents too many additional variables being generated and taking up more memory than neccesary (though not really an issue for the size of objects here!).
  2. I see your point here, and I think it is pretty valid. However, I think how the function is implemented gives greater control to the user without any surprises. I don't think we should force a specific latitudinal bin size on the user as we do not really know their intentions. However, I agree that 99% of time, users will want to cover the entire latitudinal range. I will leave the function as is for now, but this something to get feedback on from users.

Thanks again!

@Buffan3369
Copy link

Hi Lewis,

  1. Okay, I see the point. I think my mind is a bit OCD. Maybe could we leave a comment in the code saying that these 2 dfs are different? But it's just a suggestion, with your justification it seems fair enough to leave the code as it is.

  2. Perfect! Let's see if the question is raised by the users then :)

All in all, you did something really neat!

bethany-j-allen pushed a commit that referenced this issue Jul 18, 2022
# This is the 1st commit message:

Initial datasets and description

# This is the commit message #2:

Grammar

# This is the commit message #3:

Convert data to one .rda

# This is the commit message #4:

Move tetrapod data description

# This is the commit message #5:

Upload smaller file

# This is the commit message #6:

Tetrapod description updated re: review
LewisAJones added a commit that referenced this issue Jul 20, 2022
commit 739d8ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:19:43 2022 +0100

    update examples with internal data

    - class of tetrapod also updated from tibble to dataframe

commit 2d953d0
Merge: cc0384c 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:28:27 2022 +0100

    Merge pull request #22 from palaeoverse-community/12-development-lat_bins

    lat_bins()

commit 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:04:28 2022 +0100

    add reviewer

commit ef4fd41
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 13:55:54 2022 +0100

    Grammar

commit cc0384c
Merge: e9fe21a 03c230b
Author: Bethany Allen <39991015+bethany-j-allen@users.noreply.github.com>
Date:   Wed Jul 20 02:34:10 2022 -0400

    Merge pull request #16 from palaeoverse-community/example-data

    Initial tetrapod dataset and description

commit bfc1bdf
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 00:12:00 2022 +0100

    review corrections

commit 03c230b
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 18:56:52 2022 +0200

    Shrink dataset

commit 8715ff0
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 09:02:08 2022 +0200

    Add ellipsis

commit 5b48a06
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:28:13 2022 +0100

    fix lint issues

commit f9a230a
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:22:55 2022 +0100

    fix lint issues and remove lat_plot

    -fix lint issues
    - remove lat_plot

commit 9ac7ce5
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:08:31 2022 +0100

    update documentation

commit b5226c4
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:57:29 2022 +0100

    grammar

commit 3f5c3d1
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:54:18 2022 +0100

    add tests, update documentation

    -add tests
    -update lat_bins documentation
    -small modification to time_bins documentation

commit 85ad00b
Merge: 1587152 d655270
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 15:55:50 2022 +0100

    Merge branch 'main' into example-data

commit 1587152
Merge: 7053d53 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:58:13 2022 +0200

    Merge branch 'example-data' of https://github.com/palaeoverse-community/palaeoverse into example-data

commit 7053d53
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:52:38 2022 +0200

    Rebase

commit f9e675e
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    # This is a combination of 6 commits.
    # This is the 1st commit message:

    Initial datasets and description

    # This is the commit message #2:

    Grammar

    # This is the commit message #3:

    Convert data to one .rda

    # This is the commit message #4:

    Move tetrapod data description

    # This is the commit message #5:

    Upload smaller file

    # This is the commit message #6:

    Tetrapod description updated re: review

commit 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:31:44 2022 +0200

    Create tetrapod documentation

commit 35d7619
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:35 2022 +0200

    Tetrapod description updated re: review

commit e356465
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:00 2022 +0200

    Upload smaller file

commit 07d1c89
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 13:37:00 2022 +0200

    Move tetrapod data description

commit 544f321
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 11:39:39 2022 +0200

    Convert data to one .rda

commit a03defb
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:23:02 2022 +0200

    Grammar

commit 7875d4c
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    Initial datasets and description
LewisAJones added a commit that referenced this issue Jul 20, 2022
commit 84a529b
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:40:09 2022 +0100

    add don't run

commit 739d8ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:19:43 2022 +0100

    update examples with internal data

    - class of tetrapod also updated from tibble to dataframe

commit 2d953d0
Merge: cc0384c 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:28:27 2022 +0100

    Merge pull request #22 from palaeoverse-community/12-development-lat_bins

    lat_bins()

commit 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:04:28 2022 +0100

    add reviewer

commit ef4fd41
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 13:55:54 2022 +0100

    Grammar

commit cc0384c
Merge: e9fe21a 03c230b
Author: Bethany Allen <39991015+bethany-j-allen@users.noreply.github.com>
Date:   Wed Jul 20 02:34:10 2022 -0400

    Merge pull request #16 from palaeoverse-community/example-data

    Initial tetrapod dataset and description

commit bfc1bdf
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 00:12:00 2022 +0100

    review corrections

commit 03c230b
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 18:56:52 2022 +0200

    Shrink dataset

commit 8715ff0
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 09:02:08 2022 +0200

    Add ellipsis

commit 5b48a06
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:28:13 2022 +0100

    fix lint issues

commit f9a230a
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:22:55 2022 +0100

    fix lint issues and remove lat_plot

    -fix lint issues
    - remove lat_plot

commit 9ac7ce5
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:08:31 2022 +0100

    update documentation

commit b5226c4
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:57:29 2022 +0100

    grammar

commit 3f5c3d1
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:54:18 2022 +0100

    add tests, update documentation

    -add tests
    -update lat_bins documentation
    -small modification to time_bins documentation

commit 85ad00b
Merge: 1587152 d655270
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 15:55:50 2022 +0100

    Merge branch 'main' into example-data

commit 1587152
Merge: 7053d53 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:58:13 2022 +0200

    Merge branch 'example-data' of https://github.com/palaeoverse-community/palaeoverse into example-data

commit 7053d53
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:52:38 2022 +0200

    Rebase

commit f9e675e
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    # This is a combination of 6 commits.
    # This is the 1st commit message:

    Initial datasets and description

    # This is the commit message #2:

    Grammar

    # This is the commit message #3:

    Convert data to one .rda

    # This is the commit message #4:

    Move tetrapod data description

    # This is the commit message #5:

    Upload smaller file

    # This is the commit message #6:

    Tetrapod description updated re: review

commit 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:31:44 2022 +0200

    Create tetrapod documentation

commit 35d7619
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:35 2022 +0200

    Tetrapod description updated re: review

commit e356465
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:00 2022 +0200

    Upload smaller file

commit 07d1c89
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 13:37:00 2022 +0200

    Move tetrapod data description

commit 544f321
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 11:39:39 2022 +0200

    Convert data to one .rda

commit a03defb
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:23:02 2022 +0200

    Grammar

commit 7875d4c
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    Initial datasets and description
@willgearty willgearty added this to the Preliminary release milestone Jul 20, 2022
LewisAJones added a commit that referenced this issue Jul 25, 2022
commit a910491
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:40:41 2022 +0100

    update language structure/standards

commit 501ad10
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:28:28 2022 +0100

    Update README.md

commit 055fc12
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:23:11 2022 +0100

    Update CONTRIBUTING.md

commit ed9f984
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 16:31:28 2022 -0500

    Add badges to README.md

commit ddf3e0b
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 16:31:14 2022 -0500

    Add codecov.yml

commit ebcb4ba
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 13:10:40 2022 -0500

    Update coverage github action

commit e4f88e1
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 13:03:55 2022 -0500

    Minor lint fixes

commit 84a529b
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:40:09 2022 +0100

    add don't run

commit 739d8ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:19:43 2022 +0100

    update examples with internal data

    - class of tetrapod also updated from tibble to dataframe

commit 2d953d0
Merge: cc0384c 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:28:27 2022 +0100

    Merge pull request #22 from palaeoverse-community/12-development-lat_bins

    lat_bins()

commit 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:04:28 2022 +0100

    add reviewer

commit ef4fd41
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 13:55:54 2022 +0100

    Grammar

commit cc0384c
Merge: e9fe21a 03c230b
Author: Bethany Allen <39991015+bethany-j-allen@users.noreply.github.com>
Date:   Wed Jul 20 02:34:10 2022 -0400

    Merge pull request #16 from palaeoverse-community/example-data

    Initial tetrapod dataset and description

commit bfc1bdf
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 00:12:00 2022 +0100

    review corrections

commit 03c230b
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 18:56:52 2022 +0200

    Shrink dataset

commit 8715ff0
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 09:02:08 2022 +0200

    Add ellipsis

commit 5b48a06
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:28:13 2022 +0100

    fix lint issues

commit f9a230a
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:22:55 2022 +0100

    fix lint issues and remove lat_plot

    -fix lint issues
    - remove lat_plot

commit 9ac7ce5
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:08:31 2022 +0100

    update documentation

commit b5226c4
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:57:29 2022 +0100

    grammar

commit 3f5c3d1
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:54:18 2022 +0100

    add tests, update documentation

    -add tests
    -update lat_bins documentation
    -small modification to time_bins documentation

commit 85ad00b
Merge: 1587152 d655270
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 15:55:50 2022 +0100

    Merge branch 'main' into example-data

commit 1587152
Merge: 7053d53 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:58:13 2022 +0200

    Merge branch 'example-data' of https://github.com/palaeoverse-community/palaeoverse into example-data

commit 7053d53
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:52:38 2022 +0200

    Rebase

commit f9e675e
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    # This is a combination of 6 commits.
    # This is the 1st commit message:

    Initial datasets and description

    # This is the commit message #2:

    Grammar

    # This is the commit message #3:

    Convert data to one .rda

    # This is the commit message #4:

    Move tetrapod data description

    # This is the commit message #5:

    Upload smaller file

    # This is the commit message #6:

    Tetrapod description updated re: review

commit 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:31:44 2022 +0200

    Create tetrapod documentation

commit 35d7619
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:35 2022 +0200

    Tetrapod description updated re: review

commit e356465
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:00 2022 +0200

    Upload smaller file

commit 07d1c89
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 13:37:00 2022 +0200

    Move tetrapod data description

commit 544f321
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 11:39:39 2022 +0200

    Convert data to one .rda

commit a03defb
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:23:02 2022 +0200

    Grammar

commit 7875d4c
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    Initial datasets and description
LewisAJones added a commit that referenced this issue Aug 15, 2022
commit 78120e5
Merge: a910491 a1f95e6
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Thu Jul 28 09:50:40 2022 +0200

    Merge pull request #29 from palaeoverse-community/example-dataset-PARED

    Example dataset PARED

commit a1f95e6
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Thu Jul 28 09:40:20 2022 +0200

    review corrections

commit cc0249e
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 25 14:08:13 2022 +0200

    fix outstanding R CMD checks

commit 71fc77e
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 25 13:17:07 2022 +0200

    remove problematic cols

commit 27c6f07
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 25 13:02:49 2022 +0200

    update references

commit 7b0c6f0
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 25 12:53:13 2022 +0200

    add PARED dataset

commit a910491
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:40:41 2022 +0100

    update language structure/standards

commit 501ad10
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:28:28 2022 +0100

    Update README.md

commit 055fc12
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Fri Jul 22 09:23:11 2022 +0100

    Update CONTRIBUTING.md

commit ed9f984
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 16:31:28 2022 -0500

    Add badges to README.md

commit ddf3e0b
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 16:31:14 2022 -0500

    Add codecov.yml

commit ebcb4ba
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 13:10:40 2022 -0500

    Update coverage github action

commit e4f88e1
Author: willgearty@gmail.com <willgearty@gmail.com>
Date:   Wed Jul 20 13:03:55 2022 -0500

    Minor lint fixes

commit 84a529b
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:40:09 2022 +0100

    add don't run

commit 739d8ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 16:19:43 2022 +0100

    update examples with internal data

    - class of tetrapod also updated from tibble to dataframe

commit 2d953d0
Merge: cc0384c 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:28:27 2022 +0100

    Merge pull request #22 from palaeoverse-community/12-development-lat_bins

    lat_bins()

commit 04908ad
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 14:04:28 2022 +0100

    add reviewer

commit ef4fd41
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 13:55:54 2022 +0100

    Grammar

commit cc0384c
Merge: e9fe21a 03c230b
Author: Bethany Allen <39991015+bethany-j-allen@users.noreply.github.com>
Date:   Wed Jul 20 02:34:10 2022 -0400

    Merge pull request #16 from palaeoverse-community/example-data

    Initial tetrapod dataset and description

commit bfc1bdf
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Wed Jul 20 00:12:00 2022 +0100

    review corrections

commit 03c230b
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 18:56:52 2022 +0200

    Shrink dataset

commit 8715ff0
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Tue Jul 19 09:02:08 2022 +0200

    Add ellipsis

commit 5b48a06
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:28:13 2022 +0100

    fix lint issues

commit f9a230a
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:22:55 2022 +0100

    fix lint issues and remove lat_plot

    -fix lint issues
    - remove lat_plot

commit 9ac7ce5
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 19:08:31 2022 +0100

    update documentation

commit b5226c4
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:57:29 2022 +0100

    grammar

commit 3f5c3d1
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 18:54:18 2022 +0100

    add tests, update documentation

    -add tests
    -update lat_bins documentation
    -small modification to time_bins documentation

commit 85ad00b
Merge: 1587152 d655270
Author: Lewis A. Jones <41071747+LewisAJones@users.noreply.github.com>
Date:   Mon Jul 18 15:55:50 2022 +0100

    Merge branch 'main' into example-data

commit 1587152
Merge: 7053d53 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:58:13 2022 +0200

    Merge branch 'example-data' of https://github.com/palaeoverse-community/palaeoverse into example-data

commit 7053d53
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Mon Jul 18 09:52:38 2022 +0200

    Rebase

commit f9e675e
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    # This is a combination of 6 commits.
    # This is the 1st commit message:

    Initial datasets and description

    # This is the commit message #2:

    Grammar

    # This is the commit message #3:

    Convert data to one .rda

    # This is the commit message #4:

    Move tetrapod data description

    # This is the commit message #5:

    Upload smaller file

    # This is the commit message #6:

    Tetrapod description updated re: review

commit 10a2a39
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:31:44 2022 +0200

    Create tetrapod documentation

commit 35d7619
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:35 2022 +0200

    Tetrapod description updated re: review

commit e356465
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 16:26:00 2022 +0200

    Upload smaller file

commit 07d1c89
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 13:37:00 2022 +0200

    Move tetrapod data description

commit 544f321
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Fri Jul 15 11:39:39 2022 +0200

    Convert data to one .rda

commit a03defb
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:23:02 2022 +0200

    Grammar

commit 7875d4c
Author: Bethany Allen <allenb@bs-mbpr540.d.ethz.ch>
Date:   Thu Jul 14 18:16:53 2022 +0200

    Initial datasets and description
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants