Skip to content
  • Home
  • About
  • Write For US
|       { One stop for all Spark Examples }
Spark by {Examples}
  • Spark
    • Spark RDD
    • Spark DataFrame
    • Spark SQL Functions
    • What’s New in Spark 3.0?
    • Spark Streaming
    • Apache Spark Interview Questions
  • PySpark
  • Pandas
  • Hive
  • Kafka
  • H2O.ai
  • Interview Q
    • Spark Interview Questions
  • More
    • Apache Hadoop
    • Apache HBase
    • Apache Cassandra
    • Snowflake Database
    • H2O Sparkling Water
    • Scala Language
    • Python NumPy
    • R Language
Menu Close
  • Spark
    • Spark RDD
    • Spark DataFrame
    • Spark SQL Functions
    • What’s New in Spark 3.0?
    • Spark Streaming
    • Apache Spark Interview Questions
  • PySpark
  • Pandas
  • Hive
  • Kafka
  • H2O.ai
  • Interview Q
    • Spark Interview Questions
  • More
    • Apache Hadoop
    • Apache HBase
    • Apache Cassandra
    • Snowflake Database
    • H2O Sparkling Water
    • Scala Language
    • Python NumPy
    • R Language
  • Home
  • About
  • Write For US
R Programming

R dplyr filter() – Subset DataFrame Rows

The filter() function from dplyr package is used to filter the data frame rows. Note that filter() doesn't actually filter the data instead it retains all rows that satisfy the…

0 Comments
June 30, 2022
R Programming

R Subset Data Frame by Column Value & Name

How to subset the data frame (DataFrame) by column value and name in R? By using R base df[] notation, or subset() you can easily subset the DataFrame (data.frame) by…

0 Comments
June 30, 2022
R Programming

R Subset data frame with Examples

If you wanted to get the subset of a data.frame (DataFrame) Rows & Columns in R, either use the subset() function , filter() from dplyr package or R base square…

0 Comments
June 29, 2022
Read more about the article R subset() Function – Get Rows & Columns
R Programming

R subset() Function – Get Rows & Columns

The subset() is a generic R function that is used to get the rows and columns (In R terms observations & variables) from the data frame. Also used to get…

0 Comments
June 28, 2022
Read more about the article R Select Rows with Examples
R Programming

R Select Rows with Examples

By using bracket notation on R DataFrame we can select rows by name, by index, by column value, by condition e.t.c. You can also use the R base function subset()…

0 Comments
June 28, 2022
Read more about the article Select Rows with Row Names in R
R Programming

Select Rows with Row Names in R

How do I select rows with row names in R? In this article, I will explain How to select rows in a R DataFrame whose row.names match any element from…

0 Comments
June 28, 2022
Read more about the article Select Rows based on Column Value in R
R Programming

Select Rows based on Column Value in R

How do I select rows based on column value in R? In this article, I will explain how to select rows based on column values by using R base function…

0 Comments
June 28, 2022
Read more about the article Select Rows by Index in R with Examples
R Programming

Select Rows by Index in R with Examples

We can select rows (observations) by Index in R by using a single square bracket operator df[rows,columns], From the square bracket, we should be using rows position, and columns are…

0 Comments
June 27, 2022
Read more about the article R Select Rows by Condition with Examples
R Programming

R Select Rows by Condition with Examples

How do I select DataFrame rows by the condition in R? By using bracket notation you can select rows by single and multiple conditions. In this article, I will explain…

0 Comments
June 27, 2022
Read more about the article Export DataFrame to Text File in R
R Programming

Export DataFrame to Text File in R

Use R base function wirte.table() to export the data from DataFrame to a text file. Besides this, R also provides a third-party package to write the text file. In this…

0 Comments
June 27, 2022
  • 1
  • 2
  • 3
  • 4
  • …
  • 61
  • Go to the next page

Categories

  • Apache Hadoop
  • Apache Spark
  • Apache Spark Streaming
  • Apache Kafka
  • Apache HBase
  • Apache Cassandra
  • Snowflake Database
  • H2O Sparkling Water
  • PySpark

Recent Posts

  • R dplyr filter() – Subset DataFrame Rows
  • R Subset Data Frame by Column Value & Name
  • R Subset data frame with Examples
  • R subset() Function – Get Rows & Columns
  • R Select Rows with Examples
  • Select Rows with Row Names in R
  • Select Rows based on Column Value in R
  • Select Rows by Index in R with Examples
  • R Select Rows by Condition with Examples
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

About SparkByExamples.com

SparkByExamples.com is a Big Data and Spark examples community page, all examples are simple and easy to understand, and well tested in our development environment Read more ..
Copyright sparkbyexamples.com