Content deleted Content added
m "List of datasets for machine-learning research" is added in "See also" section. |
→External links: rm deadlink extlink |
||
(34 intermediate revisions by 23 users not shown) | |||
Line 1:
{{for-multi|the type of file|Data set (IBM mainframe)|the communications device|Dataset (device)}}
{{short description|Collection of data}}
[[File:Iris dataset scatterplot.svg|thumb|right|Various plots of the multivariate
A '''data set''' (or '''dataset''') is a collection of [[data]]. In the case of [[tabular data]], a data set corresponds to one or more [[table (database)|database tables]], where every [[column (database)|column]] of a table represents a particular [[Variable (computer science)|variable]], and each [[row (database)|row]] corresponds to a given [[Record (computer science)|record]] of the data set in question. The data set lists values for each of the variables, such as for example height and weight of an object, for each member of the data set. Data sets can also consist of a collection of documents or files.<ref name="Editorial">{{cite journal | last1 = Snijders | first1 = C. | last2 = Matzat | first2 = U. | last3 = Reips | first3 = U.-D. | year = 2012 | title = 'Big Data': Big gaps of knowledge in the field of Internet | url = http://www.ijis.net/ijis7_1/ijis7_1_editorial.html | journal = International Journal of Internet Science | volume = 7 | pages = 1–5 | access-date = 2017-02-10 | archive-date = 2019-11-23 | archive-url = https://web.archive.org/web/20191123051001/http://www.ijis.net/ijis7_1/ijis7_1_editorial.html | url-status = dead }}</ref>
In the [[open data]] discipline,
==Properties==
Several characteristics define a data set's structure and properties. These include the number and types of the attributes or variables, and various [[statistical measure]]s applicable to them, such as [[standard deviation]] and [[kurtosis]].<ref>{{Cite book |url=https://books.google.com/books?id=uTzeRZFmaBgC&pg=PA100 |title=Principles of data mining and knowledge discovery |author=Jan M. Żytkow, Jan Rauch |isbn=978-3-540-66490-1 |year=2000|publisher=Springer }}</ref>
The values may be numbers, such as [[real number]]s or [[integer]]s, for example representing a person's height in centimeters, but may also be [[nominal data]] (i.e., not consisting of [[Number|numerical]] values), for example representing a person's ethnicity. More generally, values may be of any of the kinds described as a [[level of measurement]]. For each variable, the values are normally all of the same kind.
In [[statistics]], data sets usually come from actual observations obtained by [[sampling (statistics)|sampling]] a [[statistical population]], and each row corresponds to the observations on one element of that population. Data sets may further be generated by [[algorithms]] for the purpose of testing certain kinds of [[software]]. Some modern statistical analysis software such as [[SPSS]] still present their data in the classical data set fashion. If data is missing or suspicious an [[imputation (statistics)|imputation]] method may be used to complete a data set.<ref name="sde">{{cite book |title=Statistical Data Editing: Impact on Data Quality: Volume 3 of Statistical Data Editing, Conference of European Statisticians Statistical standards and studies |author=United Nations Statistical Commission |author2=United Nations Economic Commission for Europe |year=2007 |publisher=United Nations Publications |isbn=978-9211169522 |page=20 |url=https://
==
Several classic data sets have been used extensively in the [[statistical]] literature:
* [[Iris flower data set]] – Multivariate data set introduced by [[Ronald Fisher]] (1936).<ref name="fisher36">{{cite journal|author=Fisher, R.A.|title=The Use of Multiple Measurements in Taxonomic Problems|journal=[[Annals of Eugenics]]|volume=7|pages=179–188|year=1963|issue=2|url=http://digital.library.adelaide.edu.au/coll/special//fisher/138.pdf|doi=10.1111/j.1469-1809.1936.tb02137.x|hdl=2440/15227|hdl-access=free|access-date=2007-05-22|archive-date=2011-09-28|archive-url=https://web.archive.org/web/20110928044802/http://digital.library.adelaide.edu.au/coll/special//fisher/138.pdf|url-status=dead}}</ref> [https://archive.ics.uci.edu/ml/datasets/Iris Provided online by University of California-Irvine Machine Learning Repository].<ref>{{cite web |url=https://archive.ics.uci.edu/ml/datasets/Iris |title=UCI Machine Learning Repository: Iris Data Set |access-date=2023-05-02 |url-status=live |archive-url=https://web.archive.org/web/20230426065109/https://archive.ics.uci.edu/ml/datasets/Iris |archive-date=2023-04-26}}</ref>
* [[MNIST database]] – Images of handwritten digits commonly used to test classification, clustering, and [[Digital image processing|image processing]] algorithms
* ''[[Categorical data analysis]]'' – Data sets used in the book, ''An Introduction to Categorical Data Analysis'', [https://stats.oarc.ucla.edu/other/examples/icda/ provided online] by UCLA Advanced Research Computing.<ref>{{cite web |url=https://stats.oarc.ucla.edu/other/examples/icda/ |title=Textbook Examples An Introduction to Categorical Data Analysis by Alan Agresti |access-date=2023-05-02 |url-status=live |archive-url=https://web.archive.org/web/20230131013107/https://stats.oarc.ucla.edu/other/examples/icda/ |archive-date=2023-01-31}}</ref>
*''[[Robust statistics]]'' – Data sets used in ''[[Robust Regression and Outlier Detection]]'' ([[Peter Rousseeuw|Rousseeuw]] and Leroy, 1968). [https://web.archive.org/web/20050207032959/http://www.uni-koeln.de/themen/statistik/data/rousseeuw/ Provided
*''[[Time series]]'' – Data used in Chatfield's book, ''The Analysis of Time Series'', are [https://web.archive.org/web/20110102201323/http://lib.stat.cmu.edu/modules.php?op=modload&name=PostWrap&file=index&page=datasets/ provided on-line] by StatLib.
*''Extreme values'' – Data used in the book, ''An Introduction to the Statistical Modeling of Extreme Values'' are [https://web.archive.org/web/20060910161517/http://homes.stat.unipd.it/coles/public_html/ismev/ismev.dat a snapshot of the data as it was provided on-line by Stuart Coles], the book's author.
*''Bayesian Data Analysis'' – Data used in the book are [http://www.stat.columbia.edu/~gelman/book/data/ provided on-line] ([https://web.archive.org/web/20230122121643/http://www.stat.columbia.edu/~gelman/book/data/ archive link]) by [[Andrew Gelman]], one of the book's authors.
* The [https://web.archive.org/web/20171023174701/http://ftp.ics.uci.edu:80/pub/machine-learning-databases/liver-disorders/ Bupa liver data] – Used in several papers in the [[machine learning]] (data mining) literature.
* [[Anscombe's quartet]] – Small data set illustrating the importance of graphing the data to avoid statistical fallacies.
==
Loading datasets using [[Python (programming language)|Python]]:
<syntaxhighlight lang="console">
$ pip install datasets
</syntaxhighlight>
<syntaxhighlight lang="python">
from datasets import load_dataset
dataset = load_dataset(NAME OF DATASET)
</syntaxhighlight>
== See also ==
* [[List of datasets for machine-learning research]]▼
* [[List of datasets in computer vision and image processing]]
* [[Data blending]]
* [[Data (
* [[Sampling (statistics)|Sampling]]
* [[Data store]]
* [[Interoperability]]
* [[Data collection system]]
▲* [[List of datasets for machine-learning research]]
{{Clear}}
Line 44 ⟶ 55:
* [https://www.data.gov/ Data.gov] – the U.S. Government's open data
* [https://data.humdata.org/ Humanitarian Data Exchange(HDX)] – The Humanitarian Data Exchange (HDX) is an open humanitarian [[data sharing]] platform managed by the [[United Nations Office for the Coordination of Humanitarian Affairs]].
* [https://opendata.cityofnewyork.us/ NYC Open Data] – free public data published by New York City agencies and other partners.
* [https://relational.
* [https://web.archive.org/web/20190214051201/http://www.researchpipeline.com/mediawiki/index.php?title=Main_Page Research Pipeline] – a wiki/website with links to data sets on many different topics
* [http://lib.stat.cmu.edu/jasadata/ StatLib–JASA Data Archive]
|