{"id":15360518,"url":"https://github.com/devmotion/palmerpenguins.jl","last_synced_at":"2025-03-27T20:20:01.454Z","repository":{"id":43448439,"uuid":"275945410","full_name":"devmotion/PalmerPenguins.jl","owner":"devmotion","description":"Load the Palmer penguins dataset in Julia.","archived":false,"fork":false,"pushed_at":"2022-08-08T08:57:08.000Z","size":21,"stargazers_count":19,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T16:09:49.891Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devmotion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.bib","codeowners":null,"security":null,"support":null}},"created_at":"2020-06-29T23:07:57.000Z","updated_at":"2024-09-04T23:15:45.000Z","dependencies_parsed_at":"2022-08-12T10:41:29.400Z","dependency_job_id":null,"html_url":"https://github.com/devmotion/PalmerPenguins.jl","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmotion%2FPalmerPenguins.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmotion%2FPalmerPenguins.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmotion%2FPalmerPenguins.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmotion%2FPalmerPenguins.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devmotion","download_url":"https://codeload.github.com/devmotion/PalmerPenguins.jl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245916768,"owners_count":20693403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T12:50:26.146Z","updated_at":"2025-03-27T20:20:01.432Z","avatar_url":"https://github.com/devmotion.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PalmerPenguins.jl \u003ca href='https://allisonhorst.github.io/palmerpenguins'\u003e\u003cimg src='https://allisonhorst.github.io/palmerpenguins/reference/figures/logo.png' align=\"right\" height=\"138.5\" /\u003e\u003c/a\u003e\n\n[![Build Status](https://github.com/devmotion/PalmerPenguins.jl/workflows/CI/badge.svg?branch=main)](https://github.com/devmotion/PalmerPenguins.jl/actions?query=workflow%3ACI+branch%3Amain)\n[![Coverage](https://codecov.io/gh/devmotion/PalmerPenguins.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/devmotion/PalmerPenguins.jl)\n[![Coverage](https://coveralls.io/repos/github/devmotion/PalmerPenguins.jl/badge.svg?branch=main)](https://coveralls.io/github/devmotion/PalmerPenguins.jl?branch=main)\n[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)\n\nLoad the [Palmer penguins dataset](https://allisonhorst.github.io/palmerpenguins/), an alternative to the Iris dataset, in Julia.\n\n## Overview\n\nThe [Palmer penguins dataset](https://allisonhorst.github.io/palmerpenguins/) by Allison Horst, Alison Hill, and Kristen Gorman is a dataset for data exploration \u0026 visualization, as an alternative to the Iris dataset.\n\nThe dataset contains data for 344 penguins.\nThere are 3 different species of penguins in this dataset, collected from 3 islands in the Palmer Archipelago, Antarctica.\n\nData were collected and made available by [Dr. Kristen Gorman](https://www.uaf.edu/cfos/people/faculty/detail/kristen-gorman.php) and the [Palmer Station, Antarctica LTER](https://pal.lternet.edu/), a member of the [Long Term Ecological Research Network](https://lternet.edu/).\n\nData are available by [CC-0](https://creativecommons.org/share-your-work/public-domain/cc0/) license in accordance with the [Palmer Station LTER Data Policy](http://pal.lternet.edu/data/policies) and the [LTER Data Access Policy for Type I data](https://lternet.edu/data-access-policy/).\n\nMore information about the dataset is available in [its official documentation](https://allisonhorst.github.io/palmerpenguins/).\n\n## Usage\n\nThe simplified version of the raw data can be loaded by\n\n```julia\njulia\u003e using PalmerPenguins\n\njulia\u003e table = PalmerPenguins.load()\n```\n\nThis will download the data (both the simplified and the raw version) once using [DataDeps.jl](https://github.com/oxinabox/DataDeps.jl), displaying the information above and making it available for future use.\n\nThe prompt and the confirmation before downloading the data for the first time can be bypassed by setting the [`DATADEPS_ALWAYS_ACCEPT` environment variable](https://www.oxinabox.net/DataDeps.jl/stable/z10-for-end-users/#Configuration-1).\nIn particular, this is required for [non-interactive use](https://github.com/devmotion/PalmerPenguins.jl/issues/9) such as in continuous integration tests.\n\nThe function `PalmerPenguins.load()` returns a [`CSV.File`](https://juliadata.github.io/CSV.jl/stable/#CSV.File) object that supports the [Tables.jl](https://github.com/JuliaData/Tables.jl) interface.\nFor instance, it can be converted to a [`DataFrame`](https://juliadata.github.io/DataFrames.jl/stable/man/getting_started/#The-DataFrame-Type-1) by executing\n\n```julia\njulia\u003e using DataFrames\n\njulia\u003e df = DataFrame(table)\n```\nThe raw data can be loaded with\n```julia\njulia\u003e tableraw = PalmerPenguins.load(; raw = true)\n```\n\nIf `raw = false` (the default), then the simplified version is returned.\n\n## References\n\nGorman KB, Williams TD, Fraser WR (2014) Ecological Sexual Dimorphism and Environmental Variability within a Community of Antarctic Penguins (Genus Pygoscelis). PLoS ONE 9(3): e90081. https://doi.org/10.1371/journal.pone.0090081\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmotion%2Fpalmerpenguins.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevmotion%2Fpalmerpenguins.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmotion%2Fpalmerpenguins.jl/lists"}