Skip to content

Commit

Permalink
Update 03-basics-factors-dataframes.Rmd
Browse files Browse the repository at this point in the history
Adjust text to clarify meaning.
  • Loading branch information
naupaka committed Apr 10, 2024
1 parent 7dd494f commit 3092eef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions episodes/03-basics-factors-dataframes.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ Ok, thats a lot up unpack! Some things to notice.
class(variants)
```

This result makes sense because mode (which deals with how an object is stored)
is treated as a **list** in R. A data frame is in some sense a "fancy" list.
However, data fames do have some specific properties so they have their own
class (**data.frame**) which is useful for functions (and programmers) to know.
This result makes sense because `mode()` (which deals with how an object is stored)
tells us that `variants` treated as a **list** in R. A data frame is in some sense a "fancy" list.
However, data fames do have some specific properties beyond that of a basic list, so they have their own
class (**data.frame**), which is important for functions (and programmers) to know.
:::::::::::::::::::::::::

::::::::::::::::::::::::::::::::::::::::::::::::::
Expand Down

0 comments on commit 3092eef

Please sign in to comment.