-
Notifications
You must be signed in to change notification settings - Fork 4
Yasemin Hayırlı- Ödev Teslimi #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| library(haven) | ||
| library(dplyr) | ||
| library(tidyverse) | ||
| library(ggplot2) | ||
|
|
||
| setwd("C:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/analysis") | ||
|
|
||
| data <- read_dta("~/YH-�dev1/2020-fall/data/raw/NEW7080.dta") %>% rename(EDUC = v4, QOB = v18, YOB= v27 , CENSUS = v16 ) | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dosya yollarını relative tutmamız, bir önceki yorumumda açıkladığım husus için önemli. R da proje mantığı bunun için önemli. Bir de, yukarıda zaten çalışma klasörünü değiştiriyorsun, burada neden absolute yol kullandığını anlayamıyorum. |
||
|
|
||
| deg<- c("QOB", "EDUC", "YOB", "CENSUS") | ||
| data80 <- subset(data, CENSUS==80 & YOB<40, select = c(deg)) %>% unite(YEARQ, c(YOB, QOB), sep = "/q", remove = FALSE) %>% | ||
| group_by(YEARQ, QOB) %>% summarise(EDUCMEAN= mean(EDUC)) %>% mutate(a= format(YEARQ, format = "%y/0%q")) | ||
|
|
||
| ggplot(data80, aes(x = a, y = EDUCMEAN, group= 1, size=1.2)) + geom_point(aes(shape = factor(QOB), size=1.5)) + geom_line() + | ||
| labs(title = "1930- 1939 D�neminde Do�anlar ��in Do�um �eyreklerine G�re Ortalama E�itim S�resi", | ||
| x="1930-1939", y="Ortalama E�itim S�resi") + theme_light()+ | ||
| theme_light() + scale_size(guide = 'none') + | ||
| theme(axis.text.x = element_text(face = "bold", color="black", size = 9, angle = 90))+ | ||
| theme(axis.text.y = element_text(face = "bold", color="black", size = 9, angle = 0)) + | ||
| scale_shape(labels = c("1.Do�um �eyre�i", "2.Do�um �eyre�i", "3.Do�um �eyre�i", "4. Do�um �eyre�i"), name = "Do�um �eyrekleri") + | ||
| theme(legend.title = element_text(face="bold")) + theme(legend.position = "bottom") | ||
|
Comment on lines
+14
to
+21
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Karakter kodlaması (encoding) utf8 olmadığı için Türkçe karakterler çıkmıyor benim bilgisayarımda. Bunu birçok kez söyledim. Rstudio da varsayılan kodlamayı utf8 olarak belirlemelisin. Sadece Rstudio da değil, bütün metin editörlerinde UTF8 kullanmalısın. Böylece paylaştığın kişiler senin kodlarını sorunsuz çalıştırabilir. |
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,254 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
| /*Angrist and Krueger (1991)*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| use "C:\Users\Bilgisayar\Documents\YH-ödev1\2020-fall\data\raw\NEW7080.dta" /* Transfer the data */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. R dosyasına benzer bir sorun burada da var. Stata do dosyalarında önce proje klasörünü çalışma klasörü yaparsın. Sonra diğer bütün yolları göreceli (relative) olarak kullanırsız. Böylece diğer kişiler sadece çalışma klasörü yolunu değiştirmek zorunda kalırlar.
Suggested change
Ayrıca, senin kullandığın şekilde çalıştırdığında, hafızada veri varsa yazılım hata verecektir. Hafızayı temizlemen gerekiyor ilk başlarken (
Bu veri dosyası yüklenmeden önce bir yerde olmalı. |
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| rename (v1 v2 v4 v5 v6 v9 v10 v11 v12 v13 v16 v18 v19 v20 v21 v24 v25 v27) /// | ||||||||||||||||||||||||||||||||||||||||||||||
| (AGE AGEQ EDUC ENOCENT ESOCENT LWKLYWGE MARRIED MIDATL MT NEWENG CENSUS QOB RACE SMSA SOATL WNOCENT WSOCENT YOB) | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /*a*/ | ||||||||||||||||||||||||||||||||||||||||||||||
| /* Creating quarter of birth dummy variables in OLS Model by depending on dummy variable [n-1] rule */ | ||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC b4.QOB if CENSUS==80 & YOB >= 30 & YOB <= 39 /* Estimating the effect of quarter of birth on education and create n-1 dummy variable */ | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model1 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model1, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+11
to
+12
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bu komutlar Stata'nın orjinal komutu değil. Kullanıcının dışarıdan paket yüklemesi gerekiyor. Ama bu kodda yazmıyor. Kodun çalışması için paket yüklenmesi gerekiyorsa bunu dosyanın en başına açıklama olarak yazmalısın. |
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Creating quarter of birth dummy variables manuel by depending on dummy variable [n-1] rule */ | ||||||||||||||||||||||||||||||||||||||||||||||
| gen dum = (QOB==1) /* Generating binary dummy variable for born in the first quarter of year */ | ||||||||||||||||||||||||||||||||||||||||||||||
| gen dum1 = (QOB==2) /* Generating binary dummy variable for born in the second quarter of year */ | ||||||||||||||||||||||||||||||||||||||||||||||
| gen dum2 = (QOB==3) /* Generating binary dummy variable for born in the third quarter of year */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+15
to
+17
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bu mantıklı değil. İkinci çeyrekte doğanların kuklası neden
Suggested change
Ayrıca bizim diğer çeryrekler için kukla değişkene ihtiyacımız yok. Onları neden oluşturuyorsun? Bu kötü kodlama pratiği 👎 |
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* 1920-1929 [CENSUS 1970] */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| estpost ttest LWKLYWGE, by(dum), if CENSUS==70 & YOB >= 1920 & YOB <= 1929 /* Checking statistical reliability of differantiate in means */ | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab ., se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| estpost ttest EDUC, by(dum), if CENSUS==70 & YOB >= 1920 & YOB <= 1929/* Checking statistical reliability of differantiate in means */ | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab .,se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Wald Estimate With 2LSL Model */ | ||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE (EDUC= i.dum) if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model2 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model2, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Wald Estimate Manuel (Not including standard errors) */ | ||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE i.dum if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| mat list e(b) | ||||||||||||||||||||||||||||||||||||||||||||||
| scalar b_w1 = e(b)[1,2] | ||||||||||||||||||||||||||||||||||||||||||||||
| di "Log_W_Wage: ", b_w | ||||||||||||||||||||||||||||||||||||||||||||||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Skaların ismi |
||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC i.dum if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| mat list e(b) | ||||||||||||||||||||||||||||||||||||||||||||||
| scalar b_e1 = e(b)[1,2] | ||||||||||||||||||||||||||||||||||||||||||||||
| di "Education: ", b_e | ||||||||||||||||||||||||||||||||||||||||||||||
| generate p1 = b_w/b_e | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+40
to
+41
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aynı hata burada da var. Ve kes yapıştır yapınca ve yazdığın kodu çalıştırmayınca böyle oluyor 😠 |
||||||||||||||||||||||||||||||||||||||||||||||
| display p1 /* Show the wald estimate */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC if CENSUS==70 & YOB >= 1920 & YOB <= 1929 /* OLS Regression for the effect of education on weekly wage */ | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model3 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model3, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* 1930-1939 [CENSUS 1980] */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| estpost ttest LWKLYWGE, by(dum), if CENSUS==80 & YOB >= 30 & YOB <= 39 /* Checking statistical reliability of differantiate in means */ | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab ., se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| estpost ttest EDUC, by(dum), if CENSUS==80 & YOB >= 30 & YOB <= 39/* Checking statistical reliability of differantiate in means */ | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab ., se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Wald Estimate With 2LSL Model */ | ||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE (EDUC= dum) if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model4 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model4, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Wald Estimate Manuel (Not including standard errors) */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE dum if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| mat list e(b) | ||||||||||||||||||||||||||||||||||||||||||||||
| scalar b_w2 = e(b)[1,2] | ||||||||||||||||||||||||||||||||||||||||||||||
| di "Log_W_Wage: ", b_w | ||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC i.dum if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| mat list e(b) | ||||||||||||||||||||||||||||||||||||||||||||||
| scalar b_e2 = e(b)[1,2] | ||||||||||||||||||||||||||||||||||||||||||||||
| di "Education: ", b_e | ||||||||||||||||||||||||||||||||||||||||||||||
| generate p2 = b_w/b_e | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+65
to
+72
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aynı hatalar |
||||||||||||||||||||||||||||||||||||||||||||||
| display p2 /* Show the wald estimate */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC if CENSUS==80 & YOB >= 30 & YOB <= 39 /* OLS Regression for the effect of education on weekly wage */ | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model5 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model5, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* ******************************** */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /*b*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* 1920-1929 [CENSUS 1970] */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* TSL Estimate With Coding (No Control Variables) */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE (EDUC= dum) if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model6 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model6, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* OLS Regression (No Control Variables)*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model7, | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model7, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* TSL Estimate With Coding (Including Control Variables) */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* All Control Variables Except YOB*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE RACE ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE /// | ||||||||||||||||||||||||||||||||||||||||||||||
| (EDUC= dum) if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model8 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model8, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* With 9 YOB Dummies and Regions */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT /// | ||||||||||||||||||||||||||||||||||||||||||||||
| (EDUC= dum) | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+110
to
+112
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hata!
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||
| eststo model9 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model9, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* OLS Regression */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /*All Control Variables*/ | ||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC RACE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE /// | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model10 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model10, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* With 9 YOB Dummies and Regions */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT /// | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model11a | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model11a, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* *************************************************************************************************************** */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* 1930-1939 [CENSUS 1980] */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* TSL Estimate With Coding (No Control Variables) */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE (EDUC= dum) if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model12 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model12, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* OLS Regression (No Control Variables)*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model13, | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model14, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
KODUN ÇALIŞTIĞINI GÖRMEDEN GÖNDERME LÜTFEN 👎 |
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* TSL Estimate With Coding (Including Control Variables) */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* All Control Variables Except YOB*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE RACE ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE /// | ||||||||||||||||||||||||||||||||||||||||||||||
| (EDUC= dum) if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model15 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model15, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* With 9 YOB Dummies and Regions */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ivregress 2sls LWKLYWGE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT (EDUC= dum) /// | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model16 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model16, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* OLS Regression */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /*All Control Variables*/ | ||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC RACE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE /// | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model17 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model17, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* With 9 YOB Dummies and Regions */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg LWKLYWGE EDUC i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT /// | ||||||||||||||||||||||||||||||||||||||||||||||
| if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model18a | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model18a, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* *************************************************************************************************************** */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Weakly Instrumental Problem Control */ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC dum if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model19 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model19, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC dum RACE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE if CENSUS==70 & YOB >= 1920 & YOB <= 1929 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model20 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model20, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC dum if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model21 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model21, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| reg EDUC dum RACE i.YOB ENOCENT ESOCENT MIDATL MT NEWENG SOATL WNOCENT WSOCENT AGE if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
| eststo model22 | ||||||||||||||||||||||||||||||||||||||||||||||
| esttab model22, se | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| /* Graph (Not Completed)"Not Drawn Line"*/ | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| gen q = "q" | ||||||||||||||||||||||||||||||||||||||||||||||
| gen m = 19 | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| egen concatenate QOB2 = concat(q QOB) | ||||||||||||||||||||||||||||||||||||||||||||||
| egen concatenate YEAR2 = concat(m YOB) | ||||||||||||||||||||||||||||||||||||||||||||||
| egen concatenate DATE2 = concat(YEAR2 QOB2) | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| gen YEARQ = quarterly(DATE2, "YQ") | ||||||||||||||||||||||||||||||||||||||||||||||
| format YEARQ %tq | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| egen EDUCMEAN1 = mean(EDUC), by(QOB YEARQ), if CENSUS==80 & YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| separate EDUCMEAN, by(QOB) veryshortlabel | ||||||||||||||||||||||||||||||||||||||||||||||
| twoway (scatter EDUCMEAN? YEARQ, mlabel(QOB)) if YOB >= 30 & YOB <= 39 | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+202
to
+215
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ben olsam şu şekilde yapardım:
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| # Fdb version 3 | ||
| ["pdflatex"] 1608034579 "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.tex" "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.pdf" "YH-�dev1" 1608034619 | ||
| "C:/Users/Bilgisayar/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1606766075 10296736 07e74edb4dc27aadd5f3a45cb66a3365 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/MiKTeX/pdftex/config/pdftex.map" 1607783458 80909 eab91d9745dd2edfd62a31d53cd5fe15 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1233951848 1004 54797486969f23fa377b128694d548df "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm" 1233951848 988 bdf658c3bfc2d96d3c8b02cfc1c94c20 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmbx12.tfm" 1136765053 1324 c910af8c371558dc20f2d7822f66fe64 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmex10.tfm" 1136765053 992 662f679a0b3d2d53c1b94050fdaa3f50 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmmi12.tfm" 1136765053 1524 4414a8315f39513458b80dfc63bff03a "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmmi6.tfm" 1136765053 1512 f21f83efb36853c0b70002322c1ab3ad "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmmi8.tfm" 1136765053 1520 eccf95517727cb11801f4f1aee3a21b4 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmr12.tfm" 1136765053 1288 655e228510b4c2a1abe905c368440826 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmr17.tfm" 1136765053 1292 296a67155bdbfc32aa9c636f21e91433 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmr6.tfm" 1136765053 1300 b62933e007d01cfd073f79b963c01526 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmr8.tfm" 1136765053 1292 21c1c5bfeaebccffdb478fd231a0997d "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmsy10.tfm" 1136765053 1124 6c73e740cf17375f03eec0ee63599741 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmsy6.tfm" 1136765053 1116 933a60c408fc0a863a92debe84b2d294 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmsy8.tfm" 1136765053 1120 8b7d695260f3cff42e636090a8002094 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/tfm/public/cm/cmti12.tfm" 1136765053 1484 ed72f8f5cf654cda15ecc8e32bfcbee5 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1247596666 32080 340ef9bf63678554ee606688e7b5339d "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1247596667 30251 6afa5cb1d0204815a708a080681d4674 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmmi12.pfb" 1247596667 36741 0ee9e374ec3e30da87cdfb0ea3575226 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmmi8.pfb" 1247596666 35469 dcf3a5f2fc1862f5952e3ee5eb1d98c4 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1247596667 32722 d7379af29a190c3f453aba36302ff5a9 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1247596666 32362 bc3f3eec7ab7d65fe700963d4017d32c "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmr8.pfb" 1247596667 32726 39f0f9e62e84beb801509898a605dbd5 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1247596667 32569 5e5ddc8df908dea60932f3c484a54c0d "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmti12.pfb" 1247596667 36118 fad905eba93cff5bce1e185fe980a177 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580390158 71627 94eb9990bed73c364d7f53f960cc8c5b "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/iftex/iftex.sty" 1583523400 6501 4011d89d9621e0b0901138815ba5ff29 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/iftex/ifvtex.sty" 1583523400 1057 525c2192b5febbd8c1f662c9468335bb "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575399508 8356 7bbb2c2373aa810be568c29e333da8ed "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576763304 5412 d5a2436094cd7be85769db90f29250a6 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/kvsetkeys/kvsetkeys.sty" 1576433820 13807 952b0226d4efca026f0e19dd266dcc22 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1601735609 18568 4409f8f50cd365c68e684407e5350b1b "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1593443540 20835 80423eac55aa175305d35b49e04fe23b "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/pgf.revision.tex" 1606131161 463 668c725f19e8239f1767c068af8d76bf "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfkeys.code.tex" 1606131129 36938 2b5b0039ae51cc081ebb25d84b8a3408 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1606131129 37431 9abe862035de1b29c7a677f3205e3d9f "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfrcs.code.tex" 1606131129 4494 af17fb7efeafe423710479858e42fa7e "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1606131129 7251 fb18c67117e09c64de82267e12cd8aa4 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfutil-common.tex" 1606131129 28579 1cdb9cf41947e1e5889d97a41f9bb448 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/generic/pgf/utilities/pgfutil-latex.def" 1606131129 6860 2503857fc7e280acd60acdfa6c8c90c4 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/amsmath/amsbsy.sty" 1601808549 2283 ca7ce284ab93c8eecdc6029dc5ccbd73 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/amsmath/amsgen.sty" 1601808551 4297 7f6eb9092061a11f87d08ed13515b48d "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/amsmath/amsmath.sty" 1601808552 90280 2c21ff5f2e32e1bf714e600924d810db "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/amsmath/amsopn.sty" 1601808553 4233 32e6abd27229755a83a8b7f18e583890 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/amsmath/amstext.sty" 1601808553 2508 8ff93b1137020e8f21930562a874ae66 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/base/article.cls" 1603697616 20145 aad8c3dd3bc36e260347b84002182bc2 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/base/ifthen.sty" 1603697618 5159 892429808d9e0e2b3548aaefd9a06ed0 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/base/inputenc.sty" 1603697618 5050 0d3b77275060ca09a40635b830c3c904 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/base/size12.clo" 1603697616 8450 6fd3588c0e9d06f6f56c6cf4f7246466 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/csvsimple/csvsimple.sty" 1554792718 24879 1466f720cdd172aea9a1a19fd64a37ba "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1580041542 14411 d1306dcf79a944f6988e688c1785f9ce "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1601897756 46845 3b58f70c6e861a13d927bff09d35ecbc "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/geometry/geometry.cfg" 1578053545 1104 7ac475a4e3466b0b43e138e9356bda83 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/geometry/geometry.sty" 1578053545 42759 9cf6c5257b1bc7af01a58859749dd37a "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics-def/pdftex.def" 1601878198 19103 48d29b6e2a64cb717117ef65f107b404 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics/graphics.sty" 1601745126 18881 a8c6a275b34ab6717ceeb8fa04b104e2 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics/graphicx.sty" 1601745126 8167 20fdfdd783821971c55bc8ee918cbe63 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics/keyval.sty" 1601745126 2677 e3b24ff953e5b58d924f163d25380312 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/graphics/trig.sty" 1601745126 4093 d7fa7d81d2870d509d25b17d0245e735 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/grfext/grfext.sty" 1575399474 7133 b94bbacbee6e4fdccdc7f810b2aec370 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1602228096 22521 d2fceb764a442a2001d257ef11db7618 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1600956116 23704 02c466ff883953a445c97e55638005fc "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/ms/everysel.sty" 1564758327 4752 936bfb87af7b91b6496a2317f80db16b "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/pgf/utilities/pgfkeys.sty" 1606131129 274 5ae372b7df79135d240456a1c6f2cf9a "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/pgf/utilities/pgfrcs.sty" 1606131129 325 f9f16d12354225b7dd52a3321f085955 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/ragged2e/ragged2e.sty" 1564758374 10290 f2895af67a8ceb11ae60d6efbed7dc62 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/tools/shellesc.sty" 1580644886 4120 d1680a5ff60d0aea9c327e07c030f4e9 "" | ||
| "C:/Users/Bilgisayar/AppData/Local/Programs/MiKTeX/tex/latex/wrapfig/wrapfig.sty" 1044403200 26220 3701aebf80ccdef248c0c20dd062fea9 "" | ||
| "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.aux" 1608034584 1725 9a201747d7011aff1a069bef19c5351f "" | ||
| "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.tex" 1608034616 18101 cecf9e84cdc71285b147e70f686f8d1a "" | ||
| "graphics//Graph.png" 1607911173 15548 af4fa23e80cba66692385019867d2046 "" | ||
| (generated) | ||
| "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.pdf" | ||
| "c:/Users/Bilgisayar/Documents/YH-�dev1/2020-fall/report/YH-�dev1.log" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rstüdyo'da "projects" özelliği ile proje oluştursaydın bu satıra ihtiyacın olmayacaktı 👎
Bu satırın yer alması şunun için problem. Diğer kişilerin bunu kendi bilgisayarları için değiştirmeleri gerekiyor. Bu tür değiştirmeleri asgaride tutmamız gerekiyor.