官术网_书友最值得收藏!

Data frames in R

One of the useful and widely used functions in R is the data.frame() function. Data frame, according to the R manual, is a matrix structure whose columns can be of differing types, such as numeric, logical, factor, or character.

How to do it…

A data frame in R is a collection of variables. A simple way to construct a data frame is using the data.frame() function in R:

data = data.frame(x = c(1:4), y = c("tom","jerry","luke","brian"))
data

Many times, we will encounter plotting functions that require data to be in a data frame. In order to coerce our data into a data frame, we can use the data.frame() function. In the following example, we create a matrix and convert it into a data frame:

mat = matrix(c(1:10), nrow = 2, ncol = 5)
data.frame(mat)

The data.frame() function comes with various arguments and can be explored by typing ?data.frame in the R console window. The code file under the title Data Frames – 2 provides additional functions that can help in understanding the underlying structure of our data. We can always get additional help by using the R documentation.

主站蜘蛛池模板: 郧西县| 城步| 司法| 子洲县| 池州市| 雷山县| 沽源县| 遂宁市| 龙南县| 天祝| 广西| 崇阳县| 准格尔旗| 秦皇岛市| 河津市| 平利县| 淳化县| 黑水县| 临朐县| 波密县| 马龙县| 汪清县| 津南区| 三门峡市| 崇明县| 涪陵区| 景谷| 房产| 易门县| 德格县| 芦溪县| 乌拉特中旗| 怀集县| 大同市| 临武县| 克山县| 大港区| 盐津县| 庆元县| 禄劝| 锦州市|