World Cup Cricket Prediction Machine Learning Model

This Jupyter Notebook illustrates a machine learning pipeline for analyzing World Cup match results. The pipeline consists of data loading, data preprocessing, feature selection, model training, hyperparameter tuning, and evaluation of a Random Forest classifier. Dataset Description The analysis utilizes two datasets: Match Results: Sourced from a CSV file named results.csv, which contains historical match data, …

World Cup Cricket Prediction Machine Learning Model Read More »

Bitcoin Price Prediction Using Machine Learning

Overview This Jupyter Notebook illustrates a machine learning pipeline for predicting Bitcoin price movements using historical price data. The pipeline consists of data loading, data preprocessing, feature engineering, model training, hyperparameter tuning, and evaluation of a Long Short-Term Memory (LSTM) network. Dataset Description The dataset used in this model is the historical Bitcoin price data …

Bitcoin Price Prediction Using Machine Learning Read More »

Types of router

There are 3 types of router Memory Router  2.Hash Router 3. Browser Route 1.Memory Router: keeps url changes in memory, not in the browser.It doesn’t change URL in the browser while it keeps history of URL in browser.Used in React-Native. import React, { Component } from “react”; import { MemoryRouter as Router, Route, Link, Switch, …

Types of router Read More »

How To Get Enter Key In Reactjs

import { useState } from ‘react’ // import reactLogo from ‘./assets/react.svg’ // import viteLogo from ‘/vite.svg’ import ‘./App.css’ function App() {   const [inputValue, setinputValue] = useState(”);   const handlekeyDown=(event)=>{     if(event.key===’enter’){     console.log(‘down key is pressed’);     alert(`You pressed Enter! Input value: ${inputValue}`);   }   };   return (   …

How To Get Enter Key In Reactjs Read More »

Submit Form Data in Reactjs

1. import { useState } from “react”; const MyForm = () => { const [formData, setFormData] = useState({ name: “”, email: “”, message: “”, }); const handleChange = (e) => { setFormData({ …formData, [e.target.name]: e.target.value, }); }; const handleSubmit = async (e) => { e.preventDefault(); try { const response = await fetch(“https://example.com/api/submit”, { method: “POST”, …

Submit Form Data in Reactjs Read More »

Scroll to Top