Trending Data Analytics course | Now at 22,000 Rs
Trending Data Science course | Now at 32,000 Rs
Supercharge your brain with AI
No.1 Emerging AI and software training institute in Bengaluru
from sklearn.impute import SimpleImputer
from sklearn.compose import ColumnTransformer
#Fill categorial values with 'missing' and numerical values with mean
cat_imputer = SimpleImputer(strategy="constant",fill_value="missing")
door_imputer = SimpleImputer(strategy="constant",fill_value=4)
num_imputer = SimpleImputer(strategy="mean")
#Define columns
cat_features = ['Make','Colour']
door_features = ['Doors']
num_features = ['Odometer (KM)']
#create an imputer that fills the missing data
imputer = ColumnTransformer([('catimputer',cat_imputer,cat_features),
('doorimputer',door_imputer,door_features),
('numimputer',num_imputer,num_features)
])
filled_x = imputer.fit_transform(x)
car_sales_filled = pd.DataFrame(filled_x,columns= ['Make','Colour','Doors','Odometer (KM)'])
# Lets try and convert our data to numbers
# Turn the categories into numbers
from sklearn.preprocessing import OneHotEncoder
categorial_features = ['Make','Colour','Doors']
onehot = OneHotEncoder()
transformer = ColumnTransformer([
('oh',onehot,categorial_features)
],remainder="passthrough")
transformed_x = transformer.fit_transform(car_sales_filled)
# Now we have got our data as numbers and filled (no missing values)
# Lets fit the model
from sklearn.ensemble import RandomForestRegressor
from sklearn.model_selection import train_test_split
x_train,x_test,y_train,y_test = train_test_split(transformed_x,y,test_size=0.2)
model = RandomForestRegressor()
model.fit(x_train,y_train)
model.score(x_test,y_test)
Trusted by thousands of students
Java
Python
Artificial Intelligence
HTML
CSS
JavaScript
SpringBoot
SQL
Django
Data Science
Java
Python
Artificial Intelligence
HTML
CSS
JavaScript
SpringBoot
SQL
Django
Data Science
Everything you need to code like a Pro
Fuel your career with top languages
Create stunning, high-quality projects in record time with our professional courses.
The complete development toolkit designed for the future
Lightweight
Live chat
Bitcoin
Lightweight
Live chat
Bitcoin
Lightweight
Live chat
Bitcoin
Slack
Night mode
Teams
Slack
Night mode
Teams
Slack
Night mode
Teams
Blockchain
Atomic
Ethereum
Blockchain
Atomic
Ethereum
Blockchain
Atomic
Ethereum
Performance
Styles
AI
Performance
Styles
AI
Performance
Styles
AI
Stripe
PayPal
Dashboard
Stripe
PayPal
Dashboard
Stripe
PayPal
Dashboard
Next gen coders emerge from J2J
import java.util.Scanner;
public class UserInput {
public static void main(String[] args) {
Scanner obj = new Scanner(System.in);
System.out.println("What is your name?");
String name=obj.nextLine();
System.out.println("How old are you?");
int age = obj.nextInt();
System.out.println("The name is "+name);
System.out.println("The user age is "+age);
}
}
Key Benefits
Boost your coding capabilities
Streamline your workflow with our amazing platform and effortlessly write cleaner and better code
We listen, We support students to build their careers
--sub queries
--single row subquery, multi row subquery, multi column subquery
-- fetch all the employees from scott.emp who are working in NEW YORK location
select * from scott.emp;
select * from scott.dept;
select * from scott.emp where deptno =
(select deptno from scott.dept where loc = 'NEW YORK');
select * from scott.emp where deptno =
(select deptno from scott.dept where loc = 'CHICAGO');
-- fetch the location of ADAMS
select loc from scott.dept where deptno =
(select deptno from scott.emp where ename = 'ADAMS');
--fetch all the employees who is taking salary lesser than CLARK
select * from scott.emp where sal<
(select sal from scott.emp where ename = 'CLARK')
--fetch all the records who are from the same deptno as SMITH
select * from scott.emp where deptno =
(select deptno from scott.emp where ename = 'SMITH');
--fetch all the records who are from the same deptno as SMITH exclude SMITH
select * from scott.emp where deptno =
(select deptno from scott.emp where ename = 'SMITH')and ename !='SMITH';
Learn and create amazing projects
Doubt solving made easier
Sir, I have some doubts in today’s class would you be able to explain it?


Yea sure, can you join up a meeting now?
Yes sir, I can join the meeting now, can u provide me the link?

Thank you sir for the doubt clearance session

Current trending courses in the market
Create stunning, high-quality projects in record time with our professional courses.
Salary hike
+ 160%
33%
Data Science
₹ 32,000
Python
₹ 12,000
AIML python
₹ 25,000
Salary hike
+ 160%
33%
Data Science
₹ 32,000
Python
₹ 12,000
AIML python
₹ 25,000
Email us
Email us for general queries and we’ll get back to you promptly.
info@j2jinstitute.com
Call us
Call us to speak to one of our friendly team members.
+91 91086 85927
FAQs
Frequently asked questions
Some of the most common questions. Can’t find the right answer? Click here to contact us
What type of courses does J2J Institute offer?
All real time coding related to AI, python, Java, JavaScript, HTML, CSS, SQL, Power BI, Software Testing (Manual and Automation), Data Analyst, Data Science, Machine Learning Courses. Python helps them to advance their career in the field of AI. AI is the current growing and future technology of all companies in the world.
What is J2J Institute mission?
J2J aims to educate the next generation of coders, empowering them to use their skills to contribute positively to the world.
Who leads the J2J Institute?
J2J Institute is led by Praveen Kumar. His highest qualification is MS from TU Chemnitz, Germany. He has 9+years of IT industry experience. He is a Trainer, Educationalist, Social worker, a motivational speaker.
How does a J2J Institute ensure a high-quality learning experience?
J2J Institute emphasizes a student-centered approach with small group attention, utilizing courses designed to not only teach coding but to also understand the concepts deeply. This method encourages students to independently apply their skills in real-world scenarios.
Engage, connect, and stay updated with our vibrant community
Testimonials
Hear what people are saying about us
“Excellent explanation by praveen sir about python program.Each class he explains in detail. For me, as not knowing anything about programming,now I learnt to write a code only through his teaching which made me to understand lt has given me the spirit to continue for the next level.”
I Nagaraj
“I joined this institute to take training for Python full stack developer. Architect. My all-over experience is excellent. The knowledge given by Praveen sir is beneficial to me & during training, they solve the topic-related thoughts. Thank you.”
Chetan R
“I came to know from my social friends that J2J Institute of Byatarayanapura Bangalore is giving the knowledge of offering the Software Testing courses. Since it is World class Institute their Way of Teaching and making to look things as easy as understandable by everyone. The support that they are giving to the student is phenomenal. They are providing hands on experience by making their students to work under tools required for a software Engineer. If anyone wants to go into IT field (for non IT students), it is undoubtedly the Best Institute you can choose without any hesitation and Just Go for it J2J Institute of Byatarayanapura.”
Munithimmaiah N
“I’m attending python class here, praveen sir is teaching very good , explained the doubts clearly and understandable.”
om Sainath
“The best institute in Bangalore where you can mold yourself in getting best training in software for your perfect future.”
Prasanna Kumar
“Python training is awesome. Trainer is very friendly and has good knowledge. If you want to learn from scratch then go for it. It’s really worth”
Minu Meena
“A nice environment to learn. Very friendly teachers who teach with ease and for sure by the time you passout from here you will have no doubts left”
Nishanth P
“Very good institute with experienced trainers, I would totally recommend this place for your career growth.”
Priyanka Rajashekar