data science

R Language

About r language R is a programming language and software environment for statistical computing and graphics. It was developed in the early 1990s by statisticians Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand. R is widely used by statisticians, data scientists, and researchers for a variety of tasks, including data analysis, …

R Language Read More »

Share

Cryptocurrency – ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿ

What’s Crypto currency? Cryptocurrency is a digital or virtual currency that uses cryptography for security. It operates independently of a central bank or government. Bitcoin, the first and most widely used cryptocurrency, was created in 2009. Other popular cryptocurrencies include Ethereum, Ripple, and Litecoin. Transactions with cryptocurrencies are recorded on a public digital ledger called …

Cryptocurrency – ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿ Read More »

Share

Blockchain

What is blockchain? Blockchain is a decentralized digital ledger technology that records transactions across a network of computers. It is most commonly associated with the Bitcoin digital currency, but it has many other uses as well. A blockchain is made up of a series of blocks that contain information about transactions. Each block contains a …

Blockchain Read More »

Share

Live Stock ticker using Python

In this example we will be knowing that how to show live stock price using Python with various python packages. Lets have an example from yahoo_fin import stock_info from tkinter import * def stock_price(): price = stock_info.get_live_price(e1.get()) Current_stock.set(price) master = Tk() master.geometry(‘300×150’) master.title(‘Global Stock Price’) Current_stock = StringVar() Label(master, text=”Live Stock Price”, font=’sans 14′, fg=’yellow’, …

Live Stock ticker using Python Read More »

Share

Data Science – Web scraping (Access Share/BSE Market price)

Retrieve Live Market Price Accessing Share and Bombay Stock Exchange (BSE) Market price using Web scraping with the help of Python’s Beautiful Soup Package. In this example we covered TCS share price as an example. Here is the Python code to perform the task. #data science with Python – TCS share and BSE Market price …

Data Science – Web scraping (Access Share/BSE Market price) Read More »

Share

Python and MySQL

Database connectivity using Python In this article we’ll be covering all database examples like SELECT, INSERT, UPDATE and DELETE operations using Python and MySQL database. First,, create database[college_db] and table[student_info] as per following image and insert few records  [here we using wamp server]  before you execute all programs in Python. a) SELECT operation # pip …

Python and MySQL Read More »

Share

Data Science – 3 [web scraping]

Retrieve current temperature using BeautifulSoup #extract current temp import requests import bs4 #url=”https://weather.com/en-IN/weather/today/l/12.96,77.59?par=google&temp=c” url=”https://weather.com/en-IN/weather/today/l/17.31,76.81?par=google&temp=c” r=requests.get(url) soup=bs4.BeautifulSoup(r.text, “html.parser”) val= soup.find(‘span’, “data-testid=’TemperatureValue'”, class_=’CurrentConditions–tempValue–3KcTQ’) print(“Current temp is : “, val.text) Output of the above program is : Current temp is : 30° 2. To check live price, title and ratings of particular product #data science with Python – …

Data Science – 3 [web scraping] Read More »

Share

Data Science – 2 [web scraping]

Data science with using Python In the following example we will be retrieving live population records using BeautifulSoup package.[web scraping] Live Population record #data science with Python – world’s population stat import bs4 import pandas as pd import requests url = ‘https://www.worldometers.info/world-population/#:~:text=Population%20in%20the%20world%20is,it%20was%20at%20around%202%25.’ result = requests.get(url) soup = bs4.BeautifulSoup(result.text,’lxml’) pop = soup.find_all(‘table’ ,class_= ‘table table-striped table-bordered …

Data Science – 2 [web scraping] Read More »

Share

Data Science – 1 [web scraping]

Data science Data science: is the field of study that combines domain expertise, programming skills, and knowledge of mathematics and statistics to extract meaningful insights from ocean of data. Web scraping can be a solution to speed up the data collection process. Instead of looking at the job site every day, you can use Python …

Data Science – 1 [web scraping] Read More »

Share
Share
Scroll to Top