How to index one csv file with no header after converting the csv to a dataframe i need to name the columns in order to normalize in minmaxScaler

0 votes
Sep 10, 2020 in Apache Spark by Manas
• 120 points
2,281 views

1 answer to this question.

0 votes

Hi@Manas,

You can read your dataset from CSV file to Dataframe and set header value to false. So it will create a data frame with the index value.

df = spark.read.format("csv").option("header", "false").load("csvfile.csv")

After that, you can replace the index value with column name.

val df2 = df.withColumnRenamed(0,"DateOfBirth")
           .withColumnRenamed(1,"salary")
df2.printSchema()
answered Sep 10, 2020 by MD
• 95,440 points

Related Questions In Apache Spark

0 votes
2 answers

In a Spark DataFrame how can I flatten the struct?

// Collect data from input avro file ...READ MORE

answered Jul 4, 2019 in Apache Spark by Dhara dhruve
5,732 views
+1 vote
2 answers
0 votes
1 answer

How to remove the elements with a key present in any other RDD?

Hey, You can use the subtractByKey () function to ...READ MORE

answered Jul 22, 2019 in Apache Spark by Gitika
• 65,910 points
3,798 views
+1 vote
1 answer
0 votes
1 answer

if i want to see my public key after running cat <path> command in gitbash but saying no such file or directory.

Hey, @KK, You can fix this issue may be ...READ MORE

answered May 26, 2020 in Apache Spark by Gitika
• 65,910 points
614 views
0 votes
1 answer
+1 vote
1 answer

How can I write a text file in HDFS not from an RDD, in Spark program?

Yes, you can go ahead and write ...READ MORE

answered May 29, 2018 in Apache Spark by Shubham
• 13,490 points
7,961 views
0 votes
1 answer
+2 votes
14 answers

How to create new column with function in Spark Dataframe?

val coder: (Int => String) = v ...READ MORE

answered Apr 5, 2019 in Apache Spark by anonymous

edited Apr 5, 2019 by Omkar 87,577 views
0 votes
1 answer

How to parse a textFile to csv in pyspark?

Hi, Use this below given code, it will ...READ MORE

answered Apr 13, 2020 in Apache Spark by MD
• 95,440 points
3,677 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