A Monte Carlo Simulation Program For Linear Regression Parameters Written In R


# a monte carlo simulation for regression parameters by baris altayligil
# deparment of economics/istanbul university 2010
x<-runif(1000,0,50) #random numbers from uniform distribution
u<-rnorm(1000,0,1) #random numbers from standart normal distribution
y<-5*x+5+u #generating y series
data<-cbind(x,y)
beta1<-c()
beta2<-c()
n<-100 #number of loop#
ksubset<-25 #length of subset#
for (i in 1:n){
datam<-data.frame(data[sample(100,ksubset),])
ols<-lm(y~x,data=datam)
beta1<-append(beta1,ols$coefficients[1])
beta2<-append(beta2,ols$coefficients[2])
}
mean(beta1)
mean(beta2)
par(mfrow=c(2,2))
plot(beta1,main=mean(beta1),type="b",xlab="number of loop",col="blue")
plot(beta2,main=mean(beta2),type="b",xlab="number of loop",col="red")
hist(beta1,freq=FALSE,col="blue")
hist(beta2,freq=FALSE,col="red")

Living Library


The Living Library works exactly like a normal library - readers come and borrow a 'book’ for a limited period of time. There is only one difference: the Books in the Living Library are human beings, and the Books and readers enter into a personal dialogue. The Books in the Living Library are people representing groups frequently confronted with prejudices and stereotypes, and who are often victims of discrimination or social exclusion. In this library, Books cannot only speak, but they are able to reply to the readers' questions, and the Books can even ask questions and learn themselves.

I.T.U. Graduate Program In Economics Friday Seminars/ İ.T.Ü. İktisat Yüksek Lisans Programı Cuma Seminerleri

Eng.I was invited as a speaker to Economics Seminars of I.T.U. Graduate Program in Economics. The seminar program continues from year 2004 to present. The academicians who are invited to these seminar programs are told to present their researches in the field of economics. In program i was especially invited to present an introduction to open source coded programs R and Gretl and their applications in economics. (Addition After The Presentation: The presentation and  the questions in the end were fine :))) It was a great honour for me to meet with Professor Dr. Ümit Şenesen, the head of program, and who translated "Basic of Econometrics, Damador Gujarati" with Professor Dr. Gülay Günlük Şenesen. Thanks to everyone in the organization.)

Tr.İ.T.Ü. Sosyal Bilimler Enstitüsü İktisat Programı İktisat Seminerlerine davet edildim. Seminer programı 2004 yılından beri devam ediyor. Seminer programına davet edilen akademisyenlerden iktisat alanında yaptıkları araştırmaları sunmaları isteniyor. Benden de özellikle açık kaynak kod kullanan R ve Gretl programlarının tanıtımı ve ekonomi uygulamaları hakkında bir sunum yapmam istendi. (Sunum Sonrası İlave: Sunum ve sonundaki sorular oldukça iyiydi :))) Program başkanı ve "Temel Ekonometri, Damador Gujarati" kitabını Profesör Dr. Gülay Günlük Şenesen ile birlikte çeviren Profesör Dr. Ümit Şenesen ile tanışmak benim için büyük bir onurdu. Organizasyonda emeği geçen herkese teşekkürler.)

İ.T.Ü. İKTİSAT YÜKSEK LİSANS PROGRAMI
CUMA SEMİNERLERİ
BAHAR 2010 DÖNEMİ

12.02.2010    Burak Uras, Washington University in St. Louis, Productive Entrepreneurship and Economic Development with Limited Contract Enforcement
19.02.2010    Barış Altaylıgil, İstanbul Üniversitesi, R ve Gretl Tanıtımı
26.02.2010    Sungur Savran, Yeni Bir Büyük Depresyon mu?
05.03.2010    Ozan Bakış, Galatasaray Üniversitesi,Occupational Choice and Redistributional Taxation
12.03.2010    İlker Dastan,Rutgers Uni., Labor Market Effects of Obesity,Smoking and Alcohol Use
19.03.2010    Kaya Ardıç, İstanbul Üniversitesi, İktisat Biliminde Yöntem Sorunları: İktisatçılar Nasıl Açıklıyorlar ve Neden Anlaşamıyorlar?
26.03.2010    Resul Aydemir, Kadir Has Universitesi, Threat of Entry and Low Cost Airline Competition
02.04.2010    Öğrenci sunumları  
09.04.2010    Öğrenci sunumları  
16.04.2010    Öğrenci sunumları  
23.04.2010    Ulusal Egemenlik ve Çocuk Bayramı 
30.04.2010    Devrim Dumludağ, Marmara Üniversitesi, The Quality of Institution in Multilateral Cooperation: The Political Economy of FDI in Turkey
07.05.2010    Sezgin Polat, Galatasaray Üniversitesi, Wage Income Mobility in Turkey
14.05.2010    Yahya Madra, Gettysburg College, Neoliberalism in Economics: A Gynealogy

Equations for Valentines


This Demonstration shows four different heart-shaped algebraic surfaces. You can improve the quality of the plots by increasing the "number of sample points" and "max recursion" settings but this will also increase the rendering time.