Labels
ARDL
Artificial Neural Network
Asymmetric Cointegration
DataStream
Eviews
Fixed effects
GMM
Islamic banks
MGARCH
Markov Switching
Matlab
Mean Group
Microfit
NARDL
Panel
Pooled Mean Group
Publication
Quantile Regression
R
Random Effects
Stata
Structural VAR
Tips
Wavelets
Pages
INCEIF
MIT
Coursera
Udacity
EdX
OpenLearning
Showing posts with label
Tips
.
Show all posts
Showing posts with label
Tips
.
Show all posts
Monday, 16 March 2015
Tips for Stata
Tip 1: Steps for preparing data for Stata (panel format):
If you have data in this format:
Company______Accounts______2013______2014____2015
Petronas Total Assets 1500 1700 2000
Petronas EBIT 750 850 1000
An, you need to transpose the data to make it look like this:
Read more »
Wednesday, 7 January 2015
Tips for R
Here are some useful tips for R:
To import/export data into/from R:
Install xlsx package:
install.packages("xlsx")
Turn on the library:
library(xlsx)
For example, there is excel workbook called 'mydata' and you want to upload a data from its worksheet called 'Data' :
myfile
= read.xlsx(
"
mydata.xlsx
", sheetName = "
Data
"
)
To export data from R into excel, run:
write.xlsx(
mydata
, "
myfile.xlsx
")
Reference
Read more »
Home
Subscribe to:
Posts (Atom)