How to concatenate Maps in Scala

0 votes
Can anyone provide an example to learn how to concatenate Maps in Scala?
Jul 29, 2019 in Apache Spark by sunny
2,471 views

1 answer to this question.

0 votes

Hey,

You can concatenate/join two Maps in more than one way. Let’s take an example:

scala> var m1=Map("Giti"->3,"Ruchi"->2,"Niti"->4)

m1: scala.collection.immutable.Map[String,Int] = Map(Giti -> 3, Ruchi -> 2, Niti -> 4)

With ++ operator

scala> m++m1

res6: scala.collection.immutable.Map[String,Int] = Map(Ayushi -> 0, Giti -> 3, Ruchi -> 2, Niti -> 4)

scala> m1++m

res7: scala.collection.immutable.Map[String,Int] = Map(Giti -> 1, Ruchi -> 2, Niti -> 4, Ayushi -> 0)


Hope this helps!

If you need to know more about Scala, join Scala course today and become the expert.

Thanks!!

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

edited Jul 29, 2019 by Gitika

Related Questions In Apache Spark

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,336 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,213 views
0 votes
1 answer

How to create RDD from an external file source in scala?

Hi, To create an RDD from external file ...READ MORE

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

How to create scala project in intellij?

You have to install Intellij with scala plugin. ...READ MORE

answered Jul 5, 2019 in Apache Spark by Jimmy
2,062 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,615 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,214 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,886 views
0 votes
1 answer

How to concatenate sets in Scala?

Hey, Yes, there are two ways of doing ...READ MORE

answered Jul 31, 2019 in Apache Spark by Gitika
• 65,910 points
1,284 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
680 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