SlideShare a Scribd company logo
1 of 11
Download to read offline
Financial Forecasting Fortune 500 Stocks Using 
Statistical Classification Learning Algorithms 
 
Zack Pollak​ • ​Zach Murray ​• ​Kyle He  
● Department of Statistics, University of Michigan — Stats 415 Data Mining 
● Contact information: 
○ Z. Pollak ​— ​ UM ‘16 BS Statistics ​—​ ​zpollak@umich.edu 
○ Z. Murray — UM ‘16 BS Informatics — ​zhmurray@umich.edu 
○ K. He — UM ‘17 BS Informatics — ​kylehe@umich.edu  
Abstract: 
A theory laying at the foundations of financial asset pricing, the Efficient Market 
Hypothesis, claims that the price of an asset reflects the full amount of information available, 
implying it is not possible to “beat the market”. Weak­Form EMH implies the expected value of 
any stock, given all available security market information, is equal to the current market price of 
the stock. This paper applies statistical learning methods to historical securities data with the 
intention of forecasting the stock price movements of Fortune 500 companies from multiple 
verticals. 
Keywords: ​Financial forecast • K­Nearest neighbors (KNN) • Linear discriminant analysis 
(LDA) • Quadratic discriminant analysis (QDA) • quantmod • R • Statistical Learning 
Methodology 
Data Collection  
We pulled our data from Yahoo! Finance using the ​getSymbols() function in the R                           
quantmod package to create an xts (eXtensible Time Series) object of stock information which                           
we then transformed into a data frame for use with the statistical learning functions found in the                                 
R packages ​MASS and ​class​. Each stock’s data is indexed by date ranging from 2007 up until                                 
today’s date ­­ up­to­date information is one of the many benefits provided by ​quantmod​. The                             
xts object from ​getSymbols() consists of the stock’s daily opening price, closing price,                         
trading volume, high price, low price, and adjusted closing price. Of these variables, we would                             
like to use the stock’s closing price and volume of shares traded for each day. 
Using the ​getSymbols() data, we would create another data frame taking advantage of                         
the date indexing of xts, containing: the daily volume of shares traded, 10 different lags, and our                                 
response variable direction. We focused our analysis on stable, Fortune 500 stocks including                         
Walmart (WMT) representing the retail sector, Exxon (XOM) representing petroleum refining,                     
and Alphabet (GOOGL) representing the tech sector. We are focusing on industry leaders as they                             
tend to represent the full sector well and are not too risky. This allows us to worry more about                                     
the strength of each learning method used in determining the best method to forecast a financial                               
time series. 
Building the Data Frames 
A vector of returns was calculated using ​dailyReturn() which computes the                     
close­to­close return as a percentage given a specific stock for each day since 2007. Using                             
returns we created our response variable, direction. Direction is a 2­level factor, categorical                         
variable consisting of “UP” and “DOWN” depending on the sign of the day’s return. Lags were                               
calculated using a time series lag function included in the ​quantmod package in order to                             
generate k lagged return vectors (where each vector is the stock’s returns vector shifted k days                               
down). We chose to set k=10 because this allowed us to capture the last two weeks of trading. 
Filtering the Data 
The data was split into a training and testing set in order to validate model performance.                               
Each model is fit using the training set, which in this case we define to be all of the stock data                                         
from January 2007 through the end of December 2013. The test set for each model is all of the                                     
stock data from January 2014 up until April 20, 2016. All observations with an NA coerced due                                 
to lagging were omitted from each data frame. 
In order to implement our statistical learning methods, we partitioned the data into                         
training and testing sets. The training set accounted for about ⅔ of the data, while the test set                                   
represented the remaining ⅓ of the data. We split the data before building the direction or any                                 
lag vectors to take advantage of xts indexing. We created vectors for each set by extracting the                                 
respective training and testing volumes of stocks traded, 10 days of lagged returns, and directions                             
from the train and test xts objects. Then, binding these vectors by column into new training and                                 
testing data frames, we were ready to implement Linear Discriminant Analysis, Quadratic                       
Discriminant Analysis, and K­Nearest Neighbors classification. 
Statistical Modeling and Analysis 
Our primary objective was to extrapolate the success rates of predicting a stock’s                         
direction using the different statistical learning methods we explored this semester. Our                       
secondary objective was to use the most successful prediction methods to create our own unique                             
quantitative trading strategies, however, this will be explored in a follow­up study. All statistical                           
analysis was done using the RStudio GUI (Version 0.99.484) with various additional packages:                         
class​, ​ggplot2​, ​MASS​, ​PerformanceAnalytics​, ​quantmod and ​xts​. Our analysis took                   
the form of exploring the effects of past returns and volume on future returns; then, visualizing                               
and interpreting model output lead to proper assessments of statistical learning for financial                         
forecasting. 
Comparing Learning Methods 
Statistical Classification — Theoretical Framework  
As the goal of this study is to successfully predict the direction a stock will move                               
tomorrow given the past 10 days’ returns and the stock’s volume, we look to build a model to                                   
classify the stock’s direction as a function of the explanatory variables using the training set.                             
Predictions will be made for the unseen test set in order to validate the accuracy of the model.                                   
This study only incorporates binary classification methods since Direction is limited to “UP” and                           
“DOWN” (if it occurs, no change in returns is included in “DOWN”). 
The mathematical framework behind binary classification includes: 
● Two­class label:   
● Input variables:   
This study will have the response variable labels, c​1 and c​2​, be represented by the stock’s                               
direction. The input variables are the 10 lagged returns and the stock’s volume so p = 11. The                                   
goal of statistical classification is to produce a classifier that accurately predicts unseen cases.                           
Using the training class­conditional densities and class­conditional prior probabilities                   
we can apply Bayes’ Theorem to estimate the posterior probability,   
Linear Discriminant Analysis 
Linear discriminant analysis (LDA) is a dimensionality reduction learning method that 
locates a linear combination of continuous predictor variables to predict a categorical response 
variable. LDA is a discriminative, linear classifier with underlying assumptions that the 
class­conditional density functions,  , are gaussian and the classes share a common 
covariance matrix (homoscedasticity across classes: ​∑​k​ = ∑   ​∀k). 
These assumptions lead to a discriminant function for each k, 
where the  decision rule is given by   generating the LDA decision 
boundaries. The ​MASS​ package’s ​lda()​ function can be leveraged with the training set to 
facilitate LDA model creation; in this case, Direction is the response variable while the rest of 
the data frame makes up the explanatory variables. R’s ​predict()​ function may be utilized in 
conjunction with the LDA model and the unseen test set to generate class predictions, “UP” or 
“DOWN”, for each test day. 
Figure 1: LDA discriminant density histograms for WMT, XOM, and GOOGL 
Plots of the LDA classification density histograms for each stock and the LDA test error 
rates for each stock can be found in Figure 1. It is clear that LDA tends to predict that the stock 
price will move up the next day and can be confirmed by the test error table. By looking at the 
density plots from the LDA model, we see that in all three cases (WMT, XOM, GOOGL) the 
LDA classification rules predicted the stock would move up a majority of the time. LDA was 
much more accurate when it came to making correct predictions that the stock would move up in 
comparison to predicting a downward movement correctly.  
Figure 2: LDA classification test error rate table 
Here we see that the error rates for the LDA classification algorithm are rather similar for 
each stock, however, Exxon resulted in a test error rate higher than 50% implying we were 
unable to forecast Exxon direction well enough using LDA with 10 days of lagged returns and 
the trading volume. The LDA analysis provides reasonably accurate prediction rates for Walmart 
and Google due to their misclassification error rates being less than 50%. We expected LDA to 
be a good forecasting method due to our analysis being run on large­cap stocks where the 
potential percentage increase or decrease is very small and the stocks tend to be rather stable 
week­by­week.   
Quadratic Discriminant Analysis 
LDA is actually a special case of Quadratic Discriminant Analysis (QDA) is a 
discriminative learning method similar to LDA in that the class­conditional densities,  , 
are modeled as multivariate gaussian. However, the covariance matrices are not assumed to be 
equal for QDA, resulting in discriminant function for each class k: 
where the decision rule is once again given by   to define the QDA 
decision boundaries. 
QDA is preferable to LDA when variances between classes are noticeably different and 
there are a significant amount of observations. The ​qda()​ function in the ​MASS​ package can be 
utilized in an identical manner to building an LDA model and test class prediction. Looking at 
Figure 2, the QDA test misclassification error straddles 50% for all three equities. As we surely 
have enough observations, we can attribute the decline in prediction accuracy to similar 
variances among classes.  
The error rates for the QDA classification algorithm on the three stocks are all fairly 
similar. However, in this case both Exxon and Walmart had error rates higher than 50% implying 
that we were not able to accurately forecast direction using QDA classification with 10 days of  
Figure 3: QDA classification test error rate table 
lagged returns and trading volume. Google did achieve a test error rate of less than 50% but since 
it is so close, we would not advocate that QDA was an accurate prediction method. We expected 
QDA to perform slightly worse than LDA due to similar variance structures between lagged 
returns and the natural stability of Fortune 500 stocks.   
K­Nearest Neighbors 
K­Nearest Neighbors is a flexible, non­parametric method where we predict a new point 
by looking at the k­nearest points, referred to as its “neighbors”. For use in classification 
problems, the classifier can be written as  , where ​N​k​ is the neighborhood 
consisting of the k points closest to the point being predicted.   
 
Figure 4: KNN classification test error rate for k in [1,20]   Figure 5: KNN classification test error rate table  
 
The KNN test error rate plot in Figure 4 uses k values ranging from 1 to 20 in order to 
fine tune our models with the optimal k values that provide the minimum test error rates.  It is 
clearly visible in the KNN error plot above that all three stocks had varying k values that 
minimized test error. As the k value increases, the model complexity decreases. Thus, a smaller k 
value means a more complex model was needed to make the most accurate prediction.  
Google resulted in an error rate higher than 50% indicating we were unable to accurately 
forecast the direction. The KNN classification method was able to provide adequate prediction 
rates for Exxon and Walmart with both of their error rates being minimized below 50%.  KNN 
was the most accurate prediction method giving the lowest average error rate across the three 
stocks, however, it was the least stable across the three stocks.  
It was not expected that KNN would perform nearly as well as it did due to the 
dimensionality of the data; these results were a little surprising to us. In the case of Walmart, the 
smallest error rate was achieved with k=1 leading to the lowest testing error rate of the study; 
this boils down to the nearest neighbor algorithm.  
Conclusions 
LDA proves to be the best statistical learning method for forecasting a financial time 
series. The misclassification error rate for LDA was noticeably smaller and/or more stable than 
the other learning methods’ error rates. The misclassification error rate for QDA was too high 
while the KNN error rate was too unstable in comparison to the LDA error rate. This may be due 
to the high­dimensionality of our data and homoscedasticity between lags, allowing LDA to 
thrive. 
QDA seems to not be the best choice when forecasting financial data using past 
observations, however, there may be some limitations to our models. Rather than using 10 lags, 
it could have been beneficial to use some sort of information criterion to select the optimal lags 
to use with each learning method. In the case of QDA, it would have made sense to only include 
the lags with the most dissimilar variances. Using less, more significant lags could also 
potentially allow KNN to further excel due to reduced dimensions. This reduction in 
dimensionality could have been explored by means of the autocorrelation structure of the data. It 
is worthwhile to note that including factors such as accounting ratios, economic measures, and 
even Google search frequencies could have provided means to enrich and improve our 
forecasting. Follow­up research to this project will consist of developing a long/short day trading 
strategy using LDA posterior probabilities as position rules. 
References 
Efficient market hypothesis. In Morningstar. Retrieved from 
____​http://www.morningstar.com/InvGlossary/efficient_market_hypothesis_definition_what_is.
____​aspx 
 
Georgakopoulos, H. (2015). Quantitative trading with R: understanding mathematical and 
____​computational tools from a quant's perspective. Palgrave Macmillan US. 
 
Hastie, T., Tibshirani, R., & Friedman, J. H. (2009). The elements of statistical learning: Data 
____​mining, inference, and prediction (2nd ed.). Springer. 
 
James, G., Hastie, T., Tibshirani, J., & Friedman, J. H. (2015). An introduction to statistical 
____​learning: with applications in R(6th ed.). Springer. 
 
Wang, L., & Zhu, J. (2010). Financial market forecasting using a two­step kernel learning 
____​method for the support vector regression. Annals of Operations Research, 174(1), 103­120. 
____​doi:10.1007/s10479­008­0357­7 
 
Wickham, H. (2009). ggplot2: elegant graphics for data analysis. Springer. 
 
Zhu, J. (2016). Lecture on assessing model accuracy. Personal Collection of J. Zhu, University of 
____​Michigan, Ann Arbor MI. 
 
Zhu, J. (2016). Lecture on classification ­ LDA, QDA and LR. Personal Collection of J. Zhu, 
____​University of Michigan, Ann Arbor MI. 
 
Zhu, J. (2016). Lecture on linear model selection and regularization. Personal Collection of J. 
____​Zhu, University of Michigan, Ann Arbor MI. 
 

More Related Content

Viewers also liked

Tax saving instruments for individual for financial year 2015 16
Tax saving instruments for individual for financial year 2015 16Tax saving instruments for individual for financial year 2015 16
Tax saving instruments for individual for financial year 2015 16Dr. Sanjay Sawant Dessai
 
New york time`s case analysis final
New york time`s case analysis finalNew york time`s case analysis final
New york time`s case analysis finalAhmad Taher, MBA
 
Taxation of income from Business and Profession in India
Taxation of income from Business and Profession in IndiaTaxation of income from Business and Profession in India
Taxation of income from Business and Profession in Indiaminiverma1
 
Skills for product design - Tom, Made By Many
Skills for product design - Tom, Made By ManySkills for product design - Tom, Made By Many
Skills for product design - Tom, Made By ManyHyper Island
 
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...Jorge Caranqui
 

Viewers also liked (6)

22.02.2013, NEWSWIRE, Issues 261-262
22.02.2013, NEWSWIRE, Issues 261-26222.02.2013, NEWSWIRE, Issues 261-262
22.02.2013, NEWSWIRE, Issues 261-262
 
Tax saving instruments for individual for financial year 2015 16
Tax saving instruments for individual for financial year 2015 16Tax saving instruments for individual for financial year 2015 16
Tax saving instruments for individual for financial year 2015 16
 
New york time`s case analysis final
New york time`s case analysis finalNew york time`s case analysis final
New york time`s case analysis final
 
Taxation of income from Business and Profession in India
Taxation of income from Business and Profession in IndiaTaxation of income from Business and Profession in India
Taxation of income from Business and Profession in India
 
Skills for product design - Tom, Made By Many
Skills for product design - Tom, Made By ManySkills for product design - Tom, Made By Many
Skills for product design - Tom, Made By Many
 
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...
Clasificación taxonómica APG IV (Angiosperm phylogenetic groups) en el Herbar...
 

Similar to Financial Forecasting Fortune 500 Stocks Using Statistical Classification Learning Algorithms

Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.
Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.
Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.IRJET Journal
 
Stock price prediction using stock eod of day price
Stock price prediction using stock eod of day priceStock price prediction using stock eod of day price
Stock price prediction using stock eod of day priceEkaantik Software Solutions
 
IRJET - Stock Recommendation System using Machine Learning Approache
IRJET - Stock Recommendation System using Machine Learning ApproacheIRJET - Stock Recommendation System using Machine Learning Approache
IRJET - Stock Recommendation System using Machine Learning ApproacheIRJET Journal
 
Stock market analysis
Stock market analysisStock market analysis
Stock market analysisSruti Jain
 
Stock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmStock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmVenkat Projects
 
Stock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmStock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmVenkat Projects
 
CHAPTER 11 LOGISTIC REGRESSION.pptx
CHAPTER 11 LOGISTIC REGRESSION.pptxCHAPTER 11 LOGISTIC REGRESSION.pptx
CHAPTER 11 LOGISTIC REGRESSION.pptxUmaDeviAnanth
 
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONSTOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONIRJET Journal
 
BATCH 1 FIRST REVIEW-1.pptx
BATCH 1 FIRST REVIEW-1.pptxBATCH 1 FIRST REVIEW-1.pptx
BATCH 1 FIRST REVIEW-1.pptxSurajRavi16
 
Google Stock Price Forecasting
Google Stock Price ForecastingGoogle Stock Price Forecasting
Google Stock Price ForecastingArkaprava Kundu
 
Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm
	Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm	Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm
Study on Evaluation of Venture Capital Based onInteractive Projection Algorithminventionjournals
 
IRJET - Ensembling Reinforcement Learning for Portfolio Management
IRJET -  	  Ensembling Reinforcement Learning for Portfolio ManagementIRJET -  	  Ensembling Reinforcement Learning for Portfolio Management
IRJET - Ensembling Reinforcement Learning for Portfolio ManagementIRJET Journal
 
Stock Price Trend Forecasting using Supervised Learning
Stock Price Trend Forecasting using Supervised LearningStock Price Trend Forecasting using Supervised Learning
Stock Price Trend Forecasting using Supervised LearningSharvil Katariya
 
Integration of Principal Component Analysis and Support Vector Regression fo...
 Integration of Principal Component Analysis and Support Vector Regression fo... Integration of Principal Component Analysis and Support Vector Regression fo...
Integration of Principal Component Analysis and Support Vector Regression fo...IJCSIS Research Publications
 
Quant Foundry Labs - Low Probability Defaults
Quant Foundry Labs - Low Probability DefaultsQuant Foundry Labs - Low Probability Defaults
Quant Foundry Labs - Low Probability DefaultsDavidkerrkelly
 
Exploratory data analysis
Exploratory data analysisExploratory data analysis
Exploratory data analysisYabebal Ayalew
 
Stock Market Trends Prediction after Earning Release.pptx
Stock Market Trends Prediction after Earning Release.pptxStock Market Trends Prediction after Earning Release.pptx
Stock Market Trends Prediction after Earning Release.pptxChen Qian
 
Application_of_Deep_Learning_Techniques.pptx
Application_of_Deep_Learning_Techniques.pptxApplication_of_Deep_Learning_Techniques.pptx
Application_of_Deep_Learning_Techniques.pptxKiranKumar918931
 

Similar to Financial Forecasting Fortune 500 Stocks Using Statistical Classification Learning Algorithms (20)

Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.
Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.
Investment Portfolio Risk Manager using Machine Learning and Deep-Learning.
 
Stock price prediction using stock eod of day price
Stock price prediction using stock eod of day priceStock price prediction using stock eod of day price
Stock price prediction using stock eod of day price
 
Unstructured Data Management
Unstructured Data ManagementUnstructured Data Management
Unstructured Data Management
 
IRJET - Stock Recommendation System using Machine Learning Approache
IRJET - Stock Recommendation System using Machine Learning ApproacheIRJET - Stock Recommendation System using Machine Learning Approache
IRJET - Stock Recommendation System using Machine Learning Approache
 
Stock market analysis
Stock market analysisStock market analysis
Stock market analysis
 
Stock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmStock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithm
 
Stock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithmStock market trend prediction using k nearest neighbor(knn) algorithm
Stock market trend prediction using k nearest neighbor(knn) algorithm
 
CHAPTER 11 LOGISTIC REGRESSION.pptx
CHAPTER 11 LOGISTIC REGRESSION.pptxCHAPTER 11 LOGISTIC REGRESSION.pptx
CHAPTER 11 LOGISTIC REGRESSION.pptx
 
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHONSTOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
STOCK MARKET PREDICTION USING MACHINE LEARNING IN PYTHON
 
BATCH 1 FIRST REVIEW-1.pptx
BATCH 1 FIRST REVIEW-1.pptxBATCH 1 FIRST REVIEW-1.pptx
BATCH 1 FIRST REVIEW-1.pptx
 
Google Stock Price Forecasting
Google Stock Price ForecastingGoogle Stock Price Forecasting
Google Stock Price Forecasting
 
Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm
	Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm	Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm
Study on Evaluation of Venture Capital Based onInteractive Projection Algorithm
 
IRJET - Ensembling Reinforcement Learning for Portfolio Management
IRJET -  	  Ensembling Reinforcement Learning for Portfolio ManagementIRJET -  	  Ensembling Reinforcement Learning for Portfolio Management
IRJET - Ensembling Reinforcement Learning for Portfolio Management
 
Stock Price Trend Forecasting using Supervised Learning
Stock Price Trend Forecasting using Supervised LearningStock Price Trend Forecasting using Supervised Learning
Stock Price Trend Forecasting using Supervised Learning
 
13F_working_paper
13F_working_paper13F_working_paper
13F_working_paper
 
Integration of Principal Component Analysis and Support Vector Regression fo...
 Integration of Principal Component Analysis and Support Vector Regression fo... Integration of Principal Component Analysis and Support Vector Regression fo...
Integration of Principal Component Analysis and Support Vector Regression fo...
 
Quant Foundry Labs - Low Probability Defaults
Quant Foundry Labs - Low Probability DefaultsQuant Foundry Labs - Low Probability Defaults
Quant Foundry Labs - Low Probability Defaults
 
Exploratory data analysis
Exploratory data analysisExploratory data analysis
Exploratory data analysis
 
Stock Market Trends Prediction after Earning Release.pptx
Stock Market Trends Prediction after Earning Release.pptxStock Market Trends Prediction after Earning Release.pptx
Stock Market Trends Prediction after Earning Release.pptx
 
Application_of_Deep_Learning_Techniques.pptx
Application_of_Deep_Learning_Techniques.pptxApplication_of_Deep_Learning_Techniques.pptx
Application_of_Deep_Learning_Techniques.pptx
 

Recently uploaded

Terpineol and it's characterization pptx
Terpineol and it's characterization pptxTerpineol and it's characterization pptx
Terpineol and it's characterization pptxMuhammadRazzaq31
 
NUMERICAL Proof Of TIme Electron Theory.
NUMERICAL Proof Of TIme Electron Theory.NUMERICAL Proof Of TIme Electron Theory.
NUMERICAL Proof Of TIme Electron Theory.syedmuneemqadri
 
GBSN - Biochemistry (Unit 8) Enzymology
GBSN - Biochemistry (Unit 8) EnzymologyGBSN - Biochemistry (Unit 8) Enzymology
GBSN - Biochemistry (Unit 8) EnzymologyAreesha Ahmad
 
Manganese‐RichSandstonesasanIndicatorofAncientOxic LakeWaterConditionsinGale...
Manganese‐RichSandstonesasanIndicatorofAncientOxic  LakeWaterConditionsinGale...Manganese‐RichSandstonesasanIndicatorofAncientOxic  LakeWaterConditionsinGale...
Manganese‐RichSandstonesasanIndicatorofAncientOxic LakeWaterConditionsinGale...Sérgio Sacani
 
MSC IV_Forensic medicine - Mechanical injuries.pdf
MSC IV_Forensic medicine - Mechanical injuries.pdfMSC IV_Forensic medicine - Mechanical injuries.pdf
MSC IV_Forensic medicine - Mechanical injuries.pdfSuchita Rawat
 
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...Ansari Aashif Raza Mohd Imtiyaz
 
MSCII_ FCT UNIT 5 TOXICOLOGY.pdf
MSCII_              FCT UNIT 5 TOXICOLOGY.pdfMSCII_              FCT UNIT 5 TOXICOLOGY.pdf
MSCII_ FCT UNIT 5 TOXICOLOGY.pdfSuchita Rawat
 
NuGOweek 2024 programme final FLYER short.pdf
NuGOweek 2024 programme final FLYER short.pdfNuGOweek 2024 programme final FLYER short.pdf
NuGOweek 2024 programme final FLYER short.pdfpablovgd
 
Polyethylene and its polymerization.pptx
Polyethylene and its polymerization.pptxPolyethylene and its polymerization.pptx
Polyethylene and its polymerization.pptxMuhammadRazzaq31
 
Information science research with large language models: between science and ...
Information science research with large language models: between science and ...Information science research with large language models: between science and ...
Information science research with large language models: between science and ...Fabiano Dalpiaz
 
Efficient spin-up of Earth System Models usingsequence acceleration
Efficient spin-up of Earth System Models usingsequence accelerationEfficient spin-up of Earth System Models usingsequence acceleration
Efficient spin-up of Earth System Models usingsequence accelerationSérgio Sacani
 
Adaptive Restore algorithm & importance Monte Carlo
Adaptive Restore algorithm & importance Monte CarloAdaptive Restore algorithm & importance Monte Carlo
Adaptive Restore algorithm & importance Monte CarloChristian Robert
 
A Scientific PowerPoint on Albert Einstein
A Scientific PowerPoint on Albert EinsteinA Scientific PowerPoint on Albert Einstein
A Scientific PowerPoint on Albert Einsteinxgamestudios8
 
Factor Causing low production and physiology of mamary Gland
Factor Causing low production and physiology of mamary GlandFactor Causing low production and physiology of mamary Gland
Factor Causing low production and physiology of mamary GlandRcvets
 
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptx
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptxNanoparticles for the Treatment of Alzheimer’s Disease_102718.pptx
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptxssusera4ec7b
 
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdf
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdfFORENSIC CHEMISTRY ARSON INVESTIGATION.pdf
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdfSuchita Rawat
 
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENS
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENSANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENS
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENSDr. TATHAGAT KHOBRAGADE
 
Introduction and significance of Symbiotic algae
Introduction and significance of  Symbiotic algaeIntroduction and significance of  Symbiotic algae
Introduction and significance of Symbiotic algaekushbuR
 
Vital Signs of Animals Presentation By Aftab Ahmed Rahimoon
Vital Signs of Animals Presentation By Aftab Ahmed RahimoonVital Signs of Animals Presentation By Aftab Ahmed Rahimoon
Vital Signs of Animals Presentation By Aftab Ahmed Rahimoonintarciacompanies
 
Electricity and Circuits for Grade 9 students
Electricity and Circuits for Grade 9 studentsElectricity and Circuits for Grade 9 students
Electricity and Circuits for Grade 9 studentslevieagacer
 

Recently uploaded (20)

Terpineol and it's characterization pptx
Terpineol and it's characterization pptxTerpineol and it's characterization pptx
Terpineol and it's characterization pptx
 
NUMERICAL Proof Of TIme Electron Theory.
NUMERICAL Proof Of TIme Electron Theory.NUMERICAL Proof Of TIme Electron Theory.
NUMERICAL Proof Of TIme Electron Theory.
 
GBSN - Biochemistry (Unit 8) Enzymology
GBSN - Biochemistry (Unit 8) EnzymologyGBSN - Biochemistry (Unit 8) Enzymology
GBSN - Biochemistry (Unit 8) Enzymology
 
Manganese‐RichSandstonesasanIndicatorofAncientOxic LakeWaterConditionsinGale...
Manganese‐RichSandstonesasanIndicatorofAncientOxic  LakeWaterConditionsinGale...Manganese‐RichSandstonesasanIndicatorofAncientOxic  LakeWaterConditionsinGale...
Manganese‐RichSandstonesasanIndicatorofAncientOxic LakeWaterConditionsinGale...
 
MSC IV_Forensic medicine - Mechanical injuries.pdf
MSC IV_Forensic medicine - Mechanical injuries.pdfMSC IV_Forensic medicine - Mechanical injuries.pdf
MSC IV_Forensic medicine - Mechanical injuries.pdf
 
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...
Molecular and Cellular Mechanism of Action of Hormones such as Growth Hormone...
 
MSCII_ FCT UNIT 5 TOXICOLOGY.pdf
MSCII_              FCT UNIT 5 TOXICOLOGY.pdfMSCII_              FCT UNIT 5 TOXICOLOGY.pdf
MSCII_ FCT UNIT 5 TOXICOLOGY.pdf
 
NuGOweek 2024 programme final FLYER short.pdf
NuGOweek 2024 programme final FLYER short.pdfNuGOweek 2024 programme final FLYER short.pdf
NuGOweek 2024 programme final FLYER short.pdf
 
Polyethylene and its polymerization.pptx
Polyethylene and its polymerization.pptxPolyethylene and its polymerization.pptx
Polyethylene and its polymerization.pptx
 
Information science research with large language models: between science and ...
Information science research with large language models: between science and ...Information science research with large language models: between science and ...
Information science research with large language models: between science and ...
 
Efficient spin-up of Earth System Models usingsequence acceleration
Efficient spin-up of Earth System Models usingsequence accelerationEfficient spin-up of Earth System Models usingsequence acceleration
Efficient spin-up of Earth System Models usingsequence acceleration
 
Adaptive Restore algorithm & importance Monte Carlo
Adaptive Restore algorithm & importance Monte CarloAdaptive Restore algorithm & importance Monte Carlo
Adaptive Restore algorithm & importance Monte Carlo
 
A Scientific PowerPoint on Albert Einstein
A Scientific PowerPoint on Albert EinsteinA Scientific PowerPoint on Albert Einstein
A Scientific PowerPoint on Albert Einstein
 
Factor Causing low production and physiology of mamary Gland
Factor Causing low production and physiology of mamary GlandFactor Causing low production and physiology of mamary Gland
Factor Causing low production and physiology of mamary Gland
 
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptx
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptxNanoparticles for the Treatment of Alzheimer’s Disease_102718.pptx
Nanoparticles for the Treatment of Alzheimer’s Disease_102718.pptx
 
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdf
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdfFORENSIC CHEMISTRY ARSON INVESTIGATION.pdf
FORENSIC CHEMISTRY ARSON INVESTIGATION.pdf
 
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENS
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENSANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENS
ANITINUTRITION FACTOR GYLCOSIDES SAPONINS CYANODENS
 
Introduction and significance of Symbiotic algae
Introduction and significance of  Symbiotic algaeIntroduction and significance of  Symbiotic algae
Introduction and significance of Symbiotic algae
 
Vital Signs of Animals Presentation By Aftab Ahmed Rahimoon
Vital Signs of Animals Presentation By Aftab Ahmed RahimoonVital Signs of Animals Presentation By Aftab Ahmed Rahimoon
Vital Signs of Animals Presentation By Aftab Ahmed Rahimoon
 
Electricity and Circuits for Grade 9 students
Electricity and Circuits for Grade 9 studentsElectricity and Circuits for Grade 9 students
Electricity and Circuits for Grade 9 students
 

Financial Forecasting Fortune 500 Stocks Using Statistical Classification Learning Algorithms