banner



How To Create A Dataframe In R With Column Names

Create Data Frame with Spaces in Column Names in R (Example)

This tutorial illustrates how to retain blanks in the column names of a data frame in the R programming language.

The page looks as follows:

You're here for the answer, so let's get straight to the example.

Example: Hinder data.frame() Function from Converting Blanks in Column Names to Dots

This example illustrates how to keep spaces in the column names when using the data.frame function in R.

First, let's create a new data frame with default specifications:

data_dot                <-                data.                frame                (                "x 1"                =                15                :                10,                # Create data frame with points                "x  2"                =                letters[                10                :                15                ],                "x _ 3"                =                "x"                )                data_dot                # Print data frame with points              

data_dot <- data.frame("x 1" = 15:10, # Create data frame with points "x 2" = letters[10:15], "x _ 3" = "x") data_dot # Print data frame with points

table 1 data frame create data frame spaces column names r

The output of the previous R syntax is visualized in Table 1: We have constructed a data frame where the blanks in the column names have been replaced by points automatically.

So how can we hinder the data.frame function from replacing the blanks in variable names?

Fortunately, the answer is quite simple. We just have to specify the check.names argument of the data.frame function to be equal to FALSE:

data_space                <-                data.                frame                (                "x 1"                =                15                :                10,                # Create data frame with blanks                "x  2"                =                letters[                10                :                15                ],                "x _ 3"                =                "x",                          check.                names                =                FALSE                )                data_space                # Print data frame with blanks              

data_space <- data.frame("x 1" = 15:10, # Create data frame with blanks "x 2" = letters[10:15], "x _ 3" = "x", check.names = FALSE) data_space # Print data frame with blanks

table 2 data frame create data frame spaces column names r

After running the previous code the data frame with spaces in the column names shown in Table 2 has been created.

Video & Further Resources

Do you need further explanations on the R programming codes of this post? Then you could watch the following video tutorial of my YouTube channel. In the video, I illustrate the R code of this article in a live session:

In addition to the video, you might want to read the other articles of this homepage.

  • Replace Spaces in Column Names
  • Convert Values in Column into Row Names of Data Frame
  • Merge Data Frames by Column Names
  • Create Data Frame where a Column is a List
  • Convert Row Names into Column of Data Frame
  • Sort Variables of Data Frame by Column Names
  • Introduction to R

To summarize: In this article, I have illustrated how to create a data frame with spaces in the variable names in R programming. Don't hesitate to let me know in the comments below, in case you have further questions.

How To Create A Dataframe In R With Column Names

Source: https://statisticsglobe.com/create-data-frame-with-spaces-in-column-names-r

Posted by: steigerwaldducke1954.blogspot.com

0 Response to "How To Create A Dataframe In R With Column Names"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel