Spatial Regession in R 1: The Four Simplest Models

Поділитися
Вставка
  • Опубліковано 21 жов 2024

КОМЕНТАРІ • 117

  • @KienTran-bc9dr
    @KienTran-bc9dr 2 місяці тому

    Thank you for the most wonderful series in spatial econometrics. However I have a small question. Can you point me into the right direction (i.e. where to find the citations) regarding Luc Anselin's remark on the SARMA model being "probably not the right model"? Thanks a lot !

  • @rachelzhang9691
    @rachelzhang9691 2 роки тому

    Thanks for illustrating this! I've been following your channel for a long time and I really appreciate your explanation of everything :)

  • @owencrook8561
    @owencrook8561 6 років тому +1

    Excellent video! One question I have is regarding the R value to determine the number of simulations... Is there a test we can run (such as a Power or Sample Size Test) that will allow us to see how many simulations (what value of R) we need to be certain the output of our model is valid or do we just have to trust that how ever many we select is good enough? Thanks!

  • @javierbeltran7623
    @javierbeltran7623 6 років тому

    Hi and Thanks again Professor Burk for all your great work trying to clarify this topic!...
    I continue my learning in spatial analysis. I have decided that in my case (Chilean economy), the k-nearest neighbor approach is the correct (to avoid bimodal distribution for the number of neighbors and to avoid islands given the difference in the size of the Chilean counties, and because I do not have data for all counties). I have constructed the W "standardized" matrix using STATA, Geoda, and R. All of them gave me different results. I have realized that Geoda does not row standardized by row, so it does not assign a 0.2 weight to each neighbor when I use, for instance, 5 nearest neighbors. Supposedly STATA and R give the same matrix, but I can not get the same results for my Moran's I test with both software. To create my standardized matrix in R I use the commands kneareigh, knn2nb and nb2listw and I have name the resulting matrix "k5w". Do you know how I can create a gwt file from my "k5w" object?
    You have suggested creating the W matrix in Geoda and using it in R or other software, but I want to do the opposite, that is, create the matrix in R and using it in Geoda (to take advantage of the global and local test in Geoda).
    Thanks again for any help!!!!

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      Hi Javier! The command write.nb.gal will take a ".nb" and write it as a ".gal" file for export to GeoDa. It is the last command described in the spdep manual. Just Google spdep and it will pop up for you to download. Good luck with it- I now how frustrating it can be trying to navigate and get the same results on different packages, especially when the code in many packages is still pretty raw (even in spdep, as wwe found with the bug!).

  • @therpope
    @therpope 4 місяці тому

    Dear Mr Burkey, is there a way to include non-spatially lagged variables in the slx model?

    • @BurkeyAcademy
      @BurkeyAcademy  4 місяці тому

      Are you asking "Can I include some variables with both lag and no-lag variables, but a few with only non-lagged?" If so, then yes, you can do this "by hand". There is a command that creates spatially lagged variables for you, and you can just add the lagged and non-lagged variables in a regular lm command using OLS.

  • @SawadogoBruno
    @SawadogoBruno Рік тому

    Thank you for this intro to spatial econometric model. We are now enlightened to the meaning of these models.
    Now, we would like to see how it works when using panel data.
    respectfully

  • @roozbehvalavi8700
    @roozbehvalavi8700 5 років тому +1

    Fantastic course! Very clear and comprehensive. Thanks

  • @hs207
    @hs207 6 місяців тому

    Thank you so much for helping to understand spatial econometrics (and to handle my master thesis)! One question that came to my mind while watching you lectures. Why are the p-values different between the outputs of the SLX model and the Impacts function? In my dataset this leads to different levels of significance for the variables. It would be great to get an answer!

    • @BurkeyAcademy
      @BurkeyAcademy  6 місяців тому

      If they are different, you must be adding the "R=500" part of the impacts command, but you shouldn't include it since simulations are not necessary for SLX models. If you include the R=, it will run simulations for estimating the p values, but if you leave it out you will get the exact p-values.

  • @katepeng3774
    @katepeng3774 3 роки тому

    Thank you so much for sharing. This video is clear and informative, and it clarified my confusion in several spatial related issues. Thumb up particularly on spatial Hausman test section!!

  • @urbanhairess
    @urbanhairess 6 років тому +1

    Fantastic!!! Such clear explanations and good constant reminders to be critical of your own results.

  • @julianwillmer
    @julianwillmer 2 роки тому

    Very good. However, I've tried to do a similar approach with point data without success. Any tips?

  • @jcxrojas
    @jcxrojas 3 роки тому

    Thanks for the explanation, professor. I have a question about one of the first steps of the process: Normally when doing an OLS, the procedure is (1) debug outliers, (2) make correlations, (3) use (preferably) the variables with a significant correlation to do the OLS. When looking to do a Spatial Regression, i shouldn't eliminate outliers anymore, right? Because that would mean removing some entities from my map and therefore it would no longer make sense to make a spatial weight matrix. I am right?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому +2

      I don't agree with your procedures for OLS, but no one does, so I'll let that go. 😀 Yes removing outliers is going to be a problem especially with spatial models.

  • @ishfaqkhan7184
    @ishfaqkhan7184 2 роки тому

    Dear Professor I am trying to follow along your lecture, using your provided data and commands. However, i am unable to run the command used in line number 53 i.e. reg2 = lmSLX(reg.eq1, data = spat.data, listw1). Every time when i try to run this command i get the error message Error in lmSLX(reg.eq1, data = spat.data, listw1) : could not find function "lmSLX", I have spent much time browsing to identify the problem but could not find a solution. Can you please help in this regard?

    • @BurkeyAcademy
      @BurkeyAcademy  2 роки тому +1

      Yes- They decided to split the regression functions out into a separate package, which really bothers me, since now everything is broken. You need to download the package called "spatialreg".

    • @ishfaqkhan7184
      @ishfaqkhan7184 2 роки тому

      @@BurkeyAcademy Thank You very much for the reply. It was very helpful. I would like to thank you for the making and sharing such an informative, helpful and easy to understand video

  • @diegodiazmilanes3732
    @diegodiazmilanes3732 Рік тому

    Thank you so much for such a fantastic video. I have one question: How can I generate equivalent models for SLX, Spatial Error, and Spatial Lag Models for spatial binary logistic regression models?

  • @nathannguyen2041
    @nathannguyen2041 2 роки тому

    Do you have a book you recommend for topics like this? Spatial analysis/regression, diagnostics/remedial measures, case studies, etc?
    I did my undergrad in mathematics, and I took some statistics classes (regression analysis, ANOVA/ANCOVA, fixed/mixed models, etc).
    I never took any spatial statistics, and I'd like to do some small projects aside from visualization.

    • @BurkeyAcademy
      @BurkeyAcademy  2 роки тому +1

      I recommend starting with J Paul Elhorst's
      Spatial Econometrics : From Cross-Sectional Data to Spatial Panels

    • @nathannguyen2041
      @nathannguyen2041 2 роки тому

      @@BurkeyAcademy Thanks! By the way, thanks for these videos. There aren't many videos on spatial models out there, that I'm aware of. Most are non-spatial related.

  • @dana89co
    @dana89co 4 роки тому +3

    Thank you so much for the video! Just one update: the package spdep does not include anymore the lmSLX command. I had to download the package called spatialreg and in this one they have not fix the R^2.

    • @BurkeyAcademy
      @BurkeyAcademy  4 роки тому

      Thanks for the update! Yes, they moved the regression commands from spdep into a new package, "spatialreg". Perhaps the package was getting too big? But, I really hate when packages do this, making all of your old code and documentation break, often for no good reason. I'll have to check the R^2 and let Roger Bivand know- or if you get a chance, you can. Just send the smallest snip of code that demonstrates the problem. I'll try to dig mine up, but it might be a couple of weeks since it is exam time. I am giving three, and taking one... the one I am taking looks like a beast (it is a take home, and I just got it).

  • @MsRishinsa
    @MsRishinsa 3 роки тому

    Thank you a lot for your video, your explanation is really clear. It helps me a lot to learn spatial analysis for my thesis

  • @willianadamczyk4042
    @willianadamczyk4042 5 років тому +1

    Very good! Thank you Dr. Mark!

  • @mirellevieiralm
    @mirellevieiralm Рік тому

    Thank you very much for your work. I have a question: would it be possible to perform a spatio-temporal regression using this same methodology?

    • @BurkeyAcademy
      @BurkeyAcademy  Рік тому +1

      Yes, people use this for panel and time series work (though I am not an expert on these). Chapter 7 of LeSage & Pace's book discusses this.

    • @mirellevieiralm
      @mirellevieiralm Рік тому

      @@BurkeyAcademy Thank you so much!!!!

  • @paulbernal07
    @paulbernal07 4 роки тому

    Dr. Burkey, I tried to reach you at the address you posted, but it doesn´t work. How can I e-mail you?

  • @ghenimaamer2463
    @ghenimaamer2463 2 роки тому

    Thanks a lot for this pedagogic video, as the habit!

  • @tedlu2502
    @tedlu2502 3 роки тому +1

    Hi Professor, i think the error at 15:22 with the = "all" is caused by the quotation marks. The code used rabbit ears quotation marks (“ ”) when R only recognizes the straight line quotation marks (" "). There is a slight and subtle difference between the two sets. Hence the "all" was not highlighted green in the code. I hope that helps!

  • @marceloryn
    @marceloryn 4 роки тому +1

    Thank you very much from Brazil

  • @mohammedsyedulislam6449
    @mohammedsyedulislam6449 3 роки тому

    Hi Professor Burkey, your shp file looks like cross-sectional data. Did you upload R tutorial on panel data?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому +1

      No- R's support for Spatial Panel Econometrics is still pretty sparse. I recommend Paul Elhorst's book which uses Matlab. However, I am horrible at Matlab.😐

    • @mohammedsyedulislam6449
      @mohammedsyedulislam6449 3 роки тому

      @@BurkeyAcademy Thanks for your reply

  • @tawilk
    @tawilk 6 років тому

    does the neighbor lag coding only look at the influence of border sharing counties, or does it apply to all counties. I'm just wondering if you can set how exact neighboring counties and ones closer in area have an impact but ignore counties beyond a certain distance.

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      Yes, you can set neighbors any way you like (looks like you might be interested in distance threshold weights), and how the neighbors actually affect the model depends on the model (local versus global).

  • @kevenjune3904
    @kevenjune3904 4 роки тому

    How to deal with missing data? What if some areas (e.g. counties) do not have data at all?

  • @arvinjjj
    @arvinjjj 6 років тому

    Hi Prof! I just want to ask something. Suppose i have a count data for my dependent variable Y and proportion data for some of my predictors (X's). Can i use those data for X's right away or do i need to sort of transform it to make it a count data? Thank you.

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому +1

      There are a couple of ways to go. Ideally, you want to be able to run Poisson and negative binomial models since your dependent variable is count. This is an example of a "limited dependent variable". The X's can be anything-- they are not as important as the form of the dependent variable. Unfortunately, I don't know of an ideal way to estimate spatial Poisson models. See my 2004 publication where I discuss this kind of model, and some things to try (especially footnote 16). Google "Burkey Simkins Payday", it is open access. The common method is to attempt a Bayesian solution, but I don't know much about that. I see that an R package "geoRglm" claims to make some progress with estimating spatial Poisson models.

    • @arvinjjj
      @arvinjjj 6 років тому

      Thank you so much! I appreciate your response and i will definitely look upon what you suggested. ☺️

    • @caviper1
      @caviper1 5 років тому

      Crimestat software allows to run spatial poisson regression analyses.

  • @ramonbicudo5220
    @ramonbicudo5220 4 роки тому

    Dear professor, Thanks for all the amazing videos! they are helpful. I am trying to run my own data but I am getting the message 'Empty neighbour sets found' when I try to convert the .nb file to listw. Do you have any idea to help me with solving this problem?

  • @siamwe4169
    @siamwe4169 Рік тому

    Thank you. Can this be done on spatial count data? I want to model crash data at block group level.

    • @BurkeyAcademy
      @BurkeyAcademy  Рік тому

      I think that Bayesian methods for spatial Poisson are now fairly common, but I am not sure of an exact paper or source for you.

  • @annaibraeva4725
    @annaibraeva4725 3 роки тому

    Thank you very much for the explanation, its a great video! I got a doubt, though: when we talk about SAR, the direct effect is the one we see in the directly treated unit, the indirect effect is the one that spills over to the neighbors of the directly treated unit, and the total effect is the sum of the two. Given the feedback effect of SAR, does this mean that we will eventually observe the total effect in the directly treated units since only they experience both direct+indirect effect on them?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому

      Page 37 in Lesage& Pace(2009) covers this. The indirect effect can both be interpreted as: 1) the total impact on all other regions from changing the variable in the home region, or 2) the total impact on the home region if ALL other areas changed their value of a variable in the same way.

    • @annaibraeva4725
      @annaibraeva4725 3 роки тому

      @@BurkeyAcademy Exactly, but what is the interpretation of the total impact? Is it the overall impact experienced by the directly-treated units? (because they experience the direct treatment impact and the indirect feedback effect from their neighbors?..)

  • @katekarniouchina507
    @katekarniouchina507 3 роки тому

    Great video. Having trouble getting impacts for SEM and SDEM models in my dataset (SLX worked fine). Error in intImpacts(rho = rho, beta = beta, P = P, n = n, mu = mu, Sigma = Sigma, : length(listw$neighbours) == n is not TRUE.... Can this be because I have "islands" in my dataset? zero.policy=TRUE was used while running the models. How do I fix this?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому

      For many, if not most spatial models, Islands simply aren't going to work. Delete them from the dataset, or choose a different definition of neighbors so that every observation has at least one neighbor.

    • @katekarniouchina507
      @katekarniouchina507 3 роки тому

      @@BurkeyAcademy Many thanks for your reply. I had a feeling that was the case, but it's great to hear confirmation from the experts. Great content. Thank you for all the hard work you put into your videos and for replying to individual questions.

  • @gueyenono
    @gueyenono 2 роки тому

    00:17:55 Hello, I would like to point to your attention the fact that the lmSLX() function is not in the {spdep} package, but in the {spatialreg} package instead.

    • @BurkeyAcademy
      @BurkeyAcademy  2 роки тому

      Yes, they moved all of the regression commands to a new package right after I finished creating this course. Sadly, there is no way to post annotations on videos on UA-cam anymore to alert people.

    • @gueyenono
      @gueyenono 2 роки тому

      @@BurkeyAcademy Hopefully people get to read these comments. And thank you very much for the awesome playlist.

  • @paulnguyen9254
    @paulnguyen9254 6 років тому +3

    Keep it up! this is amazing work!

  • @ericmulama
    @ericmulama 2 роки тому

    Hi, my lmSLX does not work. kindly help. What am I doing wrong?

    • @BurkeyAcademy
      @BurkeyAcademy  2 роки тому

      Without more information, there is no way to tell.

  • @maryellenwalker8450
    @maryellenwalker8450 6 років тому +1

    Your videos are so helpful. Do you have any resources about how to do spatial regression for data with repeated measures?

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      Do you mean "Panel Data"? I don't have anything up yet, but two options to look at are the splm package in R; but a little more advanced tools are available in Matlab. Check out Paul Elhort's short book Spatial Econometrics: From Cross Sectional Data to Spatial Panels.

    • @maryellenwalker8450
      @maryellenwalker8450 6 років тому

      Yes. I am interested in analysis of spatial panel data. I just have to figure out how to analyze my data with GLMMs. Thanks for the reference. I really appreciate it!

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      In Matlab (code by James LeSage, Paul Elhorst, Don LaCombe, and others) they do maximum likelihood, plus lots of Bayesian stuff if you are into that. Here is a paper I wrote using their Matlab code: journal.srsa.org/ojs/index.php/RRS/article/view/229/204

  • @Hastur876
    @Hastur876 3 роки тому

    31:40 hey, I noticed something with summary(impacts()). In my case I have a dataset with n=5000 and k=100, so because my knn matrix is so huge I use a trace for my summary(impacts()). When I do that, there is ZERO variation in the calculated parameter estimates, but the direct indirect and total p-values do still vary a bit (not major).
    I guess the lack of variation in parameter estimates is because I'm using a trace?

  • @danielaguisaomarin4161
    @danielaguisaomarin4161 6 років тому +1

    Great tutorial thanks! Are you gonna explain the Durbin Spatial Model in R? Thank you very much.

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому +1

      Absolutely! That one is coming next. I have everything ready to go, except no time right now! I promise, it won't be too long though (I hope!) I would be recording it today, but my microphone messed up on a video I have to make for a class I'm teaching, so I'll be re-recording that today instead. :(

  • @HernanO
    @HernanO 5 років тому

    The bug was fixed neatly.

  • @mariag3456
    @mariag3456 3 роки тому

    Thank you for your videos, it helped me a great deal!
    But I have a question I really need an answer to, so please if anyone could help...
    1. I fitted multiple spatial regression models - spatial lag model, spatial error model and spatial durbin model in R. My question is, how do I check the assumptions of normality and homoscedasticity of errors? In classical linear regression, the diagnostics is done on standardized or studentized residuals, but how do I standardize residuals in these spatial models? When I use function "residuals()" to retrieve residuals from the spatial models and do QQplot, they always have this "S" shape. Does it mean the models are wrong?
    2. The same for weighted spatial error model (using function errorsarlm with the argument weights =). Which residuals should I use to check the model assumptions?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому +1

      In R I use the bptest.sarlm command. If you see an S shape in a QQplot, it doesn't mean your model is wrong, but it may mean that your residuals aren't normally distributed, which will affect the accuracy of p values (assuming you are looking at t he right residuals). However, this isn't something I'd personally obsess over, but just be cautious for borderline p values.

    • @mariag3456
      @mariag3456 3 роки тому

      @@BurkeyAcademy I'm still wondering, I used maximum likelihood to estimate the parameters which is based on the normal distribution, so I'm still a bit unsure if the estimates would be correct when the assumption of normality is not met

    • @mariag3456
      @mariag3456 3 роки тому

      Well, I think an answer for that can be obtained by monte carlo simulation, just in case anyone ever cared.. :)

  • @MarlonFernandesdeSouza
    @MarlonFernandesdeSouza 4 роки тому

    Thank you for sharing such great content!

  • @borismu8268
    @borismu8268 4 роки тому

    Hi professot! I'm running spatial regression using R but when I am installing the package 'regos' the system says that regos is not available for this version. I may wonder is regos a must for a spatial regression or do I have to upgrade my R software? Thanks

    • @borismu8268
      @borismu8268 4 роки тому

      *professor
      Sorry for the typo

    • @BurkeyAcademy
      @BurkeyAcademy  4 роки тому

      You only need the rgeos package if you need to extract centroids from a spatial data frame (and there are probably better ways to do it). However, if your R is that old, you might want to update it- it is free, after all! ☺

    • @borismu8268
      @borismu8268 4 роки тому

      @@BurkeyAcademy Okay, then I'll update it. Thank you professor! Fantastic illustration!

  • @naturelover7040
    @naturelover7040 6 місяців тому

    Please make a lecture on spatial structure of forest by nearest neighbor method

  • @mina.zamanian
    @mina.zamanian 4 роки тому

    Thank you so much for this highly informative and practical lesson.
    I was wondering if we could transform our data before we do the spatial analysis?

    • @BurkeyAcademy
      @BurkeyAcademy  4 роки тому +1

      Yes, pretty much the same mathematical rules apply as do normal regression.

    • @mina.zamanian
      @mina.zamanian 4 роки тому

      BurkeyAcademy Sounds great. Thanks for your reply.

  • @johnowusukonduah2305
    @johnowusukonduah2305 3 роки тому

    Thank you for your good videos. I have one problem. my problem is i program in python language and i want to implement this idea of spatial regression using the python language. Please can you help me with this work?

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому +1

      Look up PySAL by Luc Anselin and his colleagues.

  • @CK-vy2qv
    @CK-vy2qv 6 років тому +1

    This is just fantastic!
    Thank u

  • @giorne22
    @giorne22 4 роки тому

    Thank you for this video!

  • @adamw2030
    @adamw2030 3 роки тому

    Excellent thank you!

  • @carloscampos3727
    @carloscampos3727 6 років тому

    Amazing tutorial!
    Congratulations!

  • @okomojacob6446
    @okomojacob6446 3 роки тому

    Thank you and i liked your whole work.The video explanation was very clear and superB!.
    All video resources well parked and shared, learners have all the resources at hand!
    However i ran into an error, can't install "spdep" package kindly help.I'm on the latest RStudio and run on Linux-Ubuntu 20.04.
    -Thank you

    • @BurkeyAcademy
      @BurkeyAcademy  3 роки тому

      If you tell me what the error is, I can try to help- but I'll just be Googling, since I don't have any special knowledge about it...

  • @binoybv9422
    @binoybv9422 4 роки тому

    Thank you professor for this wonderful explanation, I have one doubt, how will we perform the k fold cross validation in spatial models?, could you explain the validation of models in another video?

    • @BurkeyAcademy
      @BurkeyAcademy  4 роки тому

      I am speaking mostly form ignorance here, but let me give it a shot: Spatial Econometrics is not Machine Learning, so we don't usually care about, nor usually have the opportunity to perform, something like out of sample validation (which I assume is something like what you are asking about). Since the data set is being treated as ONE large organism in our models, this doesn't make any sense to do. Our goal is to learn about patterns present in the data, measuring relationships and testing theories using the data we have. We are not trying to do predictive modeling, as such- it would never make sense to try to predict the value of an out of sample country, because WHERE this country is in the network is vitally important. There is going to be a constant strain between people who are trained and interested in only ML techniques, and people who are trained in statistics/econometrics. I don't really understand the point of most of what ML people do, because I just don't have the same goals in mind. I am going to try to learn the theoretical foundations of ML at some point soon, so I can try to understand things on "the other side". I am happy to discuss this further.

    • @binoybv9422
      @binoybv9422 4 роки тому

      @@BurkeyAcademy Thank you very much professor.

  • @paulo.alexandrino
    @paulo.alexandrino Рік тому

    Amazing video!!!

  • @YvesOcean
    @YvesOcean 6 років тому

    Very clear, thanks a lot !

  • @hasanalmekdash4688
    @hasanalmekdash4688 6 років тому +2

    Great! Thanks!

  • @theresesario8102
    @theresesario8102 6 років тому

    Thank you for this ! But can you make a tutorial on how to create k-nearest neighbor distance weight matrix using shapefile? R keeps on telling me that the data (shapefile) should have coordinates.

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      This is definitely on my list to do. To make sure I can address your issue specifically, can you tell me more about your shapefile (or send it to me?) Fee free to email me mark at burkeyacademy dot com.

    • @theresesario8102
      @theresesario8102 6 років тому +1

      Hello Professor! upon reading a couple of articles it turns out I can create distance matrix thru geoda and just upload it in R.
      Although I have another question with regards to generating impact values on SLM model.
      Since my data has missing value, it seems that attributes from my regression model and my data are not identical. I've read that I should subset the data first before generating impact values, although I can't seem to find any suitable subsetting code for listw. any thoughts/ idea on this? Thank you!

    • @BurkeyAcademy
      @BurkeyAcademy  6 років тому

      Oh! I already have a video showing how to create weights matrices in GeoDa and another where I import them into R- see spatial.burkeyacademy.com. As for missing values, I have never tried to use a "dirty" data set with spatial data. I would get rid of all of the missing data, or fill in interpolated values as might be appropriate for your situation before starting the process. What do you mean by "SLM Model?"

  • @renansereninis
    @renansereninis 2 роки тому

    Amazing!

  • @dantsai5216
    @dantsai5216 5 років тому

    Such a good tutorial! You should start a patreon!

    • @BurkeyAcademy
      @BurkeyAcademy  5 років тому

      Hee hee, I see you figured it out! Thanks for becoming a Patron! ☺

  • @ranjaniamulu2279
    @ranjaniamulu2279 5 років тому

    Sir, Thank u for this video and please upload the video for conditional autoregressive model in R Software which is helpful to me and many people's...

  • @MrProfTe
    @MrProfTe 5 років тому

    Very good explanation, helped me a lot, much better then my profs, can you give literature recommendations for cite?

    • @BurkeyAcademy
      @BurkeyAcademy  5 років тому +1

      To cite me, or to cite the people originally developing these models? For me (and this video series) doi:10.18335/region.v2i2.98, for primary source material Anselin 1988 Spatial Econometrics: Methods and Models. Let me know if you need anything else!

    • @MrProfTe
      @MrProfTe 5 років тому +1

      @@BurkeyAcademy thank you very much I will cite both. So I can cite your journal in the link, right?

    • @BurkeyAcademy
      @BurkeyAcademy  5 років тому

      @@MrProfTe Sorry, I sent the doi for the wrong one. Try this one instead: openjournals.wu-wien.ac.at/ojs/index.php/region/article/view/254

  • @johnmulinge7120
    @johnmulinge7120 4 роки тому

    Good tutorials, could you please do some on Species distribution models

    • @BurkeyAcademy
      @BurkeyAcademy  4 роки тому

      I am an economist, and not familiar with this. However, if you send me some good sources, I can promise to try looking at it and see if it is something I could explore.

  • @thaleswest1548
    @thaleswest1548 5 років тому

    Thanks!

  • @zeweiliao5013
    @zeweiliao5013 2 роки тому

    Thanks!