Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
R2_train=round(reg_all.score(xtrain,ytrain),3)
print("The R2 value of the training set is : {}".format(R2.train))
## When i run this piece of code i got this error so can anyone help me out.
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Input In [83], in <cell line:="" 2="">()
1 R2_train=round(reg_all.score(xtrain,ytrain),3)
----> 2 print("The R2 value of the training set is : {}".format(R2.train))

NameError: name 'R2' is not defined

What I have tried:

I have tried so many websites. I tried on github also but don't get satisfied answer.
Posted
Updated 4-Sep-22 18:58pm

1 solution

Look at your code, look at the error message.
Python
print("The R2 value of the training set is : {}".format(R2.train))
Error
NameError: name 'R2' is not defined
So R2.train is what causes the error.
From the first line of code you show us:
Python
R2_train=round(reg_all.score(xtrain,ytrain),3)
You have a variable called R2_train, and the error line is referencing R2.train
So at a guess, you meant to type this:
Python
print("The R2 value of the training set is : {}".format(R2_train))


You should expect to get syntax errors every day, probably many times a day while you are coding - we all do regardless of how much experience we have! Sometimes, we misspell a variable, or a keyword; sometimes we forget to close a string or a code block. Sometimes the cat walks over your keyboard and types something really weird. Sometimes we just forget how many parameters a method call needs.

We all make mistakes.

And because we all do it, we all have to fix syntax errors - and it's a lot quicker to learn how and fix them yourself than to wait for someone else to fix them for you! So invest a little time in learning how to read error messages, and how to interpret your code as written in the light of what the compiler is telling you is wrong - it really is trying to be helpful!

So read this: How to Write Code to Solve a Problem, A Beginner's Guide Part 2: Syntax Errors[^] - it should help you next time you get a compilation error!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900