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

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.

主站蜘蛛池模板: 巴东县| 右玉县| 宣威市| 七台河市| 吉首市| 岳池县| 晋江市| 额尔古纳市| 凤台县| 二连浩特市| 岐山县| 高州市| 赤峰市| 汪清县| 区。| 冀州市| 礼泉县| 双鸭山市| 宝鸡市| 林西县| 日照市| 大洼县| 沐川县| 延寿县| 祁阳县| 琼结县| 灯塔市| 中山市| 托克托县| 丹巴县| 罗田县| 辉县市| 遵义市| 康定县| 习水县| 沙坪坝区| 昂仁县| 游戏| 兴隆县| 龙南县| 正阳县|