Featured Post

Top Questions People Ask About Pandas, NumPy, Matplotlib & Scikit-learn — Answered!

Image
 Whether you're a beginner or brushing up on your skills, these are the real-world questions Python learners ask most about key libraries in data science. Let’s dive in! 🐍 🐼 Pandas: Data Manipulation Made Easy 1. How do I handle missing data in a DataFrame? df.fillna( 0 ) # Replace NaNs with 0 df.dropna() # Remove rows with NaNs df.isna(). sum () # Count missing values per column 2. How can I merge or join two DataFrames? pd.merge(df1, df2, on= 'id' , how= 'inner' ) # inner, left, right, outer 3. What is the difference between loc[] and iloc[] ? loc[] uses labels (e.g., column names) iloc[] uses integer positions df.loc[ 0 , 'name' ] # label-based df.iloc[ 0 , 1 ] # index-based 4. How do I group data and perform aggregation? df.groupby( 'category' )[ 'sales' ]. sum () 5. How can I convert a column to datetime format? df[ 'date' ] = pd.to_datetime(df[ 'date' ]) ...

Cloud Case Study Part-2

Present case study is in Health Care:
 
Practo Technologies was formed in year 2008. The vision of the company was to make medical information digitally accessible to patients and doctors. With all these features at pleasing price, solutions providers like Practo aimed to create the most efficient healthcare experience for people in India and gradually around the world.


The aim was to improve the patient experience for finding and meeting a doctor.

 
Traditionally the healthcare records were created manually and stored on shelves. Managing of records stored in files traditionally was of not much use. With the evolution of technology, there has been a paradigm shift in the manner the healthcare industry functions.
 
The medical records are electronically stored and managed. With the acceptance of cloud computing the healthcare patient data is stored at a remote server location on the internet.
 
The following companies offering CLOUD based health care Service:
 
Practo Ray
 
It is a cloud based flagship product that allows patients to search for doctors and book their appointment online. The dedicated online platform for health professionals and intelligent system that lets users know when the doctor is available. The user friendly and effective practice management software supports online appointment booking, electronic medical records (EMR) and enables effective clinic-patient communication.
Practo Hello:
 
It is the first automated call based software that enables patients to call and book their appointment instantly. The automated voice service responds to the calls made by the patients to book an appointment. The Interactive Voice Response System (IVRS) solution for doctors lets them manage the phone calls made to their clinics and access call recordings while ensuring that no call goes unanswered.
Practo Group
 
It is an online collaborative platform dedicated to healthcare community. The online forum enables healthcare professionals to share views, meet other members and promote their health events. The group service enabled collaboration among like-minded healthcare fraternity.

Comments

Popular posts from this blog

SQL Query: 3 Methods for Calculating Cumulative SUM

5 SQL Queries That Popularly Used in Data Analysis

Big Data: Top Cloud Computing Interview Questions (1 of 4)