How to concatenate sets in Scala

0 votes
Can any provide an example how to concatenate sets in Scala?
Jul 31, 2019 in Apache Spark by Jitu
1,298 views

1 answer to this question.

0 votes

Hey,

Yes, there are two ways of doing this you can follow this example provided below.

Lets us take a new set first:

scala> var s1=Set(7,9,8,9)

s1: scala.collection.immutable.Set[Int] = Set(7, 9, 8)
  • Using ++ Operator 
​scala> s++s1

res3: scala.collection.immutable.Set[Int] = Set(1, 9, 7, 3, 8, 4)

scala> s++s1

res4: scala.collection.immutable.Set[Int] = Set(1, 9, 7, 3, 8, 4)

scala> s1++s

res5: scala.collection.immutable.Set[Int] = Set(1, 9, 7, 3, 8, 4)

  • Using Set.++() Method

You can call the ++() method to either set and pass the other to it.

scala> s.++(s1)

res6: scala.collection.immutable.Set[Int] = Set(1, 9, 7, 3, 8, 4)

scala> s1.++(s)

res7: scala.collection.immutable.Set[Int] = Set(1, 9, 7, 3, 8, 4)

If you want to know more about Apache Spark Scala, It's highly recommended to go for the Spark Certification Course today.

answered Jul 31, 2019 by Gitika
• 65,910 points

Related Questions In Apache Spark

0 votes
1 answer

How to find values common to two sets in Scala

Hey, There are two ways to find the ...READ MORE

answered Jul 31, 2019 in Apache Spark by Gitika
• 65,910 points
1,412 views
0 votes
2 answers

How to execute a function in apache-scala?

Function Definition : def test():Unit{ var a=10 var b=20 var c=a+b } calling ...READ MORE

answered Aug 5, 2020 in Apache Spark by Ramkumar Ramasamy
683 views
0 votes
1 answer

How to create RDD from parallelized collection in scala?

Hi, You can check this example in your ...READ MORE

answered Jul 4, 2019 in Apache Spark by Gitika
• 65,910 points
1,340 views
0 votes
1 answer

How to create RDD from existing RDD in scala?

scala> val rdd1 = sc.parallelize(List(1,2,3,4,5))                           -  Creating ...READ MORE

answered Feb 29, 2020 in Apache Spark by anonymous
1,217 views
+1 vote
2 answers
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,619 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,215 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
104,970 views
0 votes
1 answer

How to concatenate Maps in Scala?

Hey, You can concatenate/join two Maps in more than ...READ MORE

answered Jul 29, 2019 in Apache Spark by Gitika
• 65,910 points

edited Jul 29, 2019 by Gitika 2,475 views
0 votes
1 answer

How to declare sets with value in Scala?

Hey, You can follow this code: scala> var s=Set(1,4,4,3) s: ...READ MORE

answered Jul 30, 2019 in Apache Spark by Gitika
• 65,910 points
385 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP