Hamayoon Shah
Hamayoon Shah
  • 193
  • 152 350

วีดีโอ

War Brings Money: How Capitalists Cash In on Military Contracts
มุมมอง 282 หลายเดือนก่อน
War Brings Money: How Capitalists Cash In on Military Contracts
The Mississippi Bubble: The Story of John Law, a Man Who Gambled on an Entire Nation's Economy
มุมมอง 982 หลายเดือนก่อน
The Mississippi Bubble: The Story of John Law, a Man Who Gambled on an Entire Nation's Economy
The Four Pillars of Modern Civilization: Ammonia, Plastics, Steel, and Cement
มุมมอง 922 หลายเดือนก่อน
The Four Pillars of Modern Civilization: Ammonia, Plastics, Steel, and Cement
Brief History and Records of Javelin
มุมมอง 1183 หลายเดือนก่อน
Brief History and Records of Javelin
Why Are Stock Markets Crashing? Is It the Iran-Israel Escalation or Something Else?
มุมมอง 1.4K3 หลายเดือนก่อน
Why Are Stock Markets Crashing? Is It the Iran-Israel Escalation or Something Else?
COPULAS in R-Studio: Simple explanation of copula and its estimation in R (PART 1)
มุมมอง 1703 หลายเดือนก่อน
COPULAS in R-Studio: Simple explanation of copula and its estimation in R (PART 1)
QVAR Dynamic Connectedness Model Using R
มุมมอง 5323 หลายเดือนก่อน
QVAR Dynamic Connectedness Model Using R
GARCH Model in R with simple explanation
มุมมอง 1.4Kปีที่แล้ว
GARCH Model in R with simple explanation
VAR Vector Auto regression in R: Simple Explanation and Estimation
มุมมอง 842ปีที่แล้ว
VAR Vector Auto regression in R: Simple Explanation and Estimation
Vlookup in R: Megring two data sets with unique IDs
มุมมอง 76ปีที่แล้ว
Vlookup in R: Megring two data sets with unique IDs
Creating Dummies, Adding Variables, Renaming variables and Merging two data sets in R
มุมมอง 71ปีที่แล้ว
Creating Dummies, Adding Variables, Renaming variables and Merging two data sets in R
Date Variable in R: Dealing with the Problematic Date Variable
มุมมอง 165ปีที่แล้ว
Date Variable in R: Dealing with the Problematic Date Variable
Area Plots in R using ggplot
มุมมอง 347ปีที่แล้ว
Area Plots in R using ggplot
Violin Plots in R: with no categorical variables available
มุมมอง 86ปีที่แล้ว
Violin Plots in R: with no categorical variables available
Plotting multiple timeseries Variables on the basis of dates in or time in one go using R
มุมมอง 268ปีที่แล้ว
Plotting multiple timeseries Variables on the basis of dates in or time in one go using R
Boxplots in R for Numeric variables: Create Boxplots for all the variables in dataset
มุมมอง 210ปีที่แล้ว
Boxplots in R for Numeric variables: Create Boxplots for all the variables in dataset
Descriptive Statistics of all the data in less than 2 minutes using R
มุมมอง 139ปีที่แล้ว
Descriptive Statistics of all the data in less than 2 minutes using R
Correlation Matrix Plotting in R: Interactive heat plotting of correlation matrix in R
มุมมอง 410ปีที่แล้ว
Correlation Matrix Plotting in R: Interactive heat plotting of correlation matrix in R
Five Most Important Functions in R: For Students, Academicians, managers and Practitioners
มุมมอง 155ปีที่แล้ว
Five Most Important Functions in R: For Students, Academicians, managers and Practitioners
Difference in Differences: DID simple explanation and estimation in R
มุมมอง 718ปีที่แล้ว
Difference in Differences: DID simple explanation and estimation in R
Time Series plotting and Displaying multiple plots (graphs) in a single output using R
มุมมอง 2.3Kปีที่แล้ว
Time Series plotting and Displaying multiple plots (graphs) in a single output using R
Diebold-Yilmaz Connectedness estimation in R: The TVP-VAR and QVAR connectedness table estimation
มุมมอง 8Kปีที่แล้ว
Diebold-Yilmaz Connectedness estimation in R: The TVP-VAR and QVAR connectedness table estimation
Propensity Score Matching using STATA: Simple explanation and step by step estimation
มุมมอง 15Kปีที่แล้ว
Propensity Score Matching using STATA: Simple explanation and step by step estimation
US Yield Curve Nelson and Siegel Parameters calculation with R (Level, Slope and Curvature)
มุมมอง 1.7Kปีที่แล้ว
US Yield Curve Nelson and Siegel Parameters calculation with R (Level, Slope and Curvature)
Watch Football WorldCup 2022 for Free
มุมมอง 35ปีที่แล้ว
Watch Football WorldCup 2022 for Free
How to set a directory in STATA (IN URDU AND HINDI)
มุมมอง 34ปีที่แล้ว
How to set a directory in STATA (IN URDU AND HINDI)
What is truth? A philosophical Answer in Urdu
มุมมอง 1.1K2 ปีที่แล้ว
What is truth? A philosophical Answer in Urdu
Aristotle's Golden Mean (Urdu)
มุมมอง 872 ปีที่แล้ว
Aristotle's Golden Mean (Urdu)
Khushi Kia hai? What is happiness? A philosophical answer by ancient Greek philosophers.
มุมมอง 282 ปีที่แล้ว
Khushi Kia hai? What is happiness? A philosophical answer by ancient Greek philosophers.

ความคิดเห็น

  • @ShahmeerMostafa
    @ShahmeerMostafa 26 วันที่ผ่านมา

    Now a journey to trillion processors

  • @ammarali4420
    @ammarali4420 หลายเดือนก่อน

    nice video, please upload more parts on the same, if possible, make a playlist on all econometric techniques. thanks. jazak Allah khair

  • @mustafaalmabroukabdallaalf4823
    @mustafaalmabroukabdallaalf4823 หลายเดือนก่อน

    if we have more than one variable what will be the command?

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      # Load required libraries library(ggplot2) library(dplyr) # Sample data set.seed(123) n <- 100 data <- data.frame( x = seq(1, n), y1 = cumsum(runif(n, min = 0, max = 10)), # Cumulative sum to simulate area y2 = cumsum(runif(n, min = 0, max = 10)), # Cumulative sum to simulate area y3 = cumsum(runif(n, min = 0, max = 10)) # Cumulative sum to simulate area ) # Reshape data for plotting data_long <- data %>% pivot_longer(cols = c(y1, y2, y3), names_to = "variable", values_to = "value") # Create the area plot ggplot(data_long, aes(x = x, y = value, fill = variable)) + geom_area(position = 'identity', alpha = 0.5) + # Use position='identity' for overlapping areas labs(title = "Area Plot with Three Variables", x = "X-Axis", y = "Values", fill = "Variables") + theme_minimal()

  • @NawazMuhammad-b9j
    @NawazMuhammad-b9j หลายเดือนก่อน

    I mean I should select complete column

  • @NawazMuhammad-b9j
    @NawazMuhammad-b9j หลายเดือนก่อน

    If I want to asending years then I should select d colum?

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      @@NawazMuhammad-b9j I did not get your question sir

  • @mahnazamini7791
    @mahnazamini7791 หลายเดือนก่อน

    i dont know how you defined the nlag and nfore

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      @@mahnazamini7791 for nlag you should follow the criteria of AIC and BIC and for nfore you need to follow the theory or intuition that how forward you want to predict

  • @IlyasKhan-fh2mb
    @IlyasKhan-fh2mb 2 หลายเดือนก่อน

    Alaka da chaghay warsara ta pa khpala khula wahay ka sanga?

  • @shreyamroychowdhury6716
    @shreyamroychowdhury6716 2 หลายเดือนก่อน

    India should whitewash Australia

  • @ruata2162
    @ruata2162 2 หลายเดือนก่อน

    All should invest in indian stock market..the only hope for the future

  • @sudhakarkolla3661
    @sudhakarkolla3661 2 หลายเดือนก่อน

    India will win all the 5 test matches at home and Australia they may win 3-2margin or lose 2-3 margin. All😢

  • @razahussain6368
    @razahussain6368 2 หลายเดือนก่อน

    Good

  • @mustafaalmabroukabdallaalf4823
    @mustafaalmabroukabdallaalf4823 2 หลายเดือนก่อน

    Thank you very much. I changed the quantile to 90%,10%, and 50% but I get the same table contents every time. Could you please help me

  • @halilaltntas3393
    @halilaltntas3393 2 หลายเดือนก่อน

    Hamayoon, how can you write r results in excell?

  • @mustafaalmabroukabdallaalf4823
    @mustafaalmabroukabdallaalf4823 2 หลายเดือนก่อน

    Error in zoo(df, order.by = date) : could not find function "zoo" every time it says this statement

    • @hamayoonshah1990
      @hamayoonshah1990 2 หลายเดือนก่อน

      @@mustafaalmabroukabdallaalf4823 install the zoo package first for this

  • @mustafaalmabroukabdallaalf4823
    @mustafaalmabroukabdallaalf4823 2 หลายเดือนก่อน

    thank you very much. when I am trying to use zoo function it says could not find function zoo, could you please help me to sort this problem out

    • @hamayoonshah1990
      @hamayoonshah1990 2 หลายเดือนก่อน

      @@mustafaalmabroukabdallaalf4823 you have to Install and library zoo package first

    • @mustafaalmabroukabdallaalf4823
      @mustafaalmabroukabdallaalf4823 2 หลายเดือนก่อน

      @hamayoonshah1990 thank you very much . I have solved the problem. Could you please how can I get the results of the return connectedness of the Median ? What command should I put to get the median result ?

  • @AppliedStatsinR-ne9fe
    @AppliedStatsinR-ne9fe 2 หลายเดือนก่อน

    Beautiful

  • @halilaltntas3393
    @halilaltntas3393 2 หลายเดือนก่อน

    Great and usefull work for all. Congratulations Hamayoon😀

  • @AppliedStatsinR-ne9fe
    @AppliedStatsinR-ne9fe 3 หลายเดือนก่อน

    This is a beautiful video. Good job keep it up

  • @maisamali3087
    @maisamali3087 3 หลายเดือนก่อน

    👍👍👍

  • @mujeeburrahman3352
    @mujeeburrahman3352 3 หลายเดือนก่อน

    Nice 🎉🎉🎉

  • @saadsufi8881
    @saadsufi8881 3 หลายเดือนก่อน

    Ptc k ly pisy kahan sy aty hn,govt bnk or any other source?

  • @pushpanegi2418
    @pushpanegi2418 3 หลายเดือนก่อน

    how to change the color of the plots

    • @hamayoonshah1990
      @hamayoonshah1990 3 หลายเดือนก่อน

      @@pushpanegi2418 for that you need to plot them through ggolot2

    • @pushpanegi2418
      @pushpanegi2418 3 หลายเดือนก่อน

      @@hamayoonshah1990 please suggest how to do that?

    • @hamayoonshah1990
      @hamayoonshah1990 3 หลายเดือนก่อน

      Watch my video on areaplot​@@pushpanegi2418

  • @halilaltntas3393
    @halilaltntas3393 3 หลายเดือนก่อน

    Can you explain (if you know) quantile ardl based error correction model?

  • @shekahmed5249
    @shekahmed5249 3 หลายเดือนก่อน

    Great job brother! I would recommend you to select nlag by the basis of AIC of optimal lag selection. Otherwise there spillovers cannot capture actual transmission.

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 3 หลายเดือนก่อน

    Thanks

  • @halilaltntas3393
    @halilaltntas3393 3 หลายเดือนก่อน

    Great job. congratulations 😊

  • @sadamkhan1324
    @sadamkhan1324 4 หลายเดือนก่อน

    Wow zabardast

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 4 หลายเดือนก่อน

    Please make a video on quantile connectedness approach

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 4 หลายเดือนก่อน

    Please make a video on quantile connectedness approach

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 4 หลายเดือนก่อน

    Please make a video on quantile connectedness approach

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 4 หลายเดือนก่อน

    Please make a video on quantile connectedness approach

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 4 หลายเดือนก่อน

    Please make a video on quantile connectedness approach

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      @@RizwanAli-ky1ji I have already uploaded one. You can find that on my channel. 👍

  • @Dhanya690
    @Dhanya690 4 หลายเดือนก่อน

    Thanks, would like to ask you, the pscore and psmatch2 are they two separate matching method? or should we do both for impact analysis?

    • @hamayoonshah1990
      @hamayoonshah1990 4 หลายเดือนก่อน

      @@Dhanya690 both are the same

    • @Dhanya690
      @Dhanya690 4 หลายเดือนก่อน

      @@hamayoonshah1990 thank u sir, so do we need to use both? or any one of them?

    • @Dhanya690
      @Dhanya690 4 หลายเดือนก่อน

      @@hamayoonshah1990 i used Pscore command, can we do balancing test if we opt pscore rather psmatch 2 command?

  • @halilaltntas3393
    @halilaltntas3393 5 หลายเดือนก่อน

    MaşaAllah

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 5 หลายเดือนก่อน

    kindly share the contact

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 5 หลายเดือนก่อน

    sir please share the contact

  • @RizwanAli-ky1ji
    @RizwanAli-ky1ji 5 หลายเดือนก่อน

    Can i have you contact or how can i contact you.

  • @fatimabibi2001
    @fatimabibi2001 5 หลายเดือนก่อน

    Can you give the data link kindly

  • @aninditabhattacharjee2009
    @aninditabhattacharjee2009 5 หลายเดือนก่อน

    Its too good very much useful

  • @CA-dy8yc
    @CA-dy8yc 5 หลายเดือนก่อน

    Thank you for this video! btw are you using daily return or daily log returns data? thank you!

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      @@CA-dy8yc it's almost the same, so you can use both

  • @ayadhichem4567
    @ayadhichem4567 6 หลายเดือนก่อน

    How I could solve this issue "Estimating model Computing connectedness measures Error in charToDate(x) : character string is not in a standard unambiguous format"

    • @hamayoonshah1990
      @hamayoonshah1990 6 หลายเดือนก่อน

      First concert the date variable into a proper date format by using function as.Date()

  • @AnonとGumi
    @AnonとGumi 6 หลายเดือนก่อน

    Fantastic video! Thank you very much. But I still have some questions. How can I determine the lag-length of the TVP-VAR model, check the stability of the TVP-VAR model, check the significance of the coefficients, and do the residual diagnostics before I directly get the results of variance decompositions using the package ConnectedApproach? I’d appreciate it if you could answer my questions.

    • @hamayoonshah1990
      @hamayoonshah1990 6 หลายเดือนก่อน

      No need to check the significance plus follow the default lag length and besides that no need to do the diagnostic

  • @Helpmesubswithoutanyvideos
    @Helpmesubswithoutanyvideos 6 หลายเดือนก่อน

    How to impulse - response function

  • @financialtrader3435
    @financialtrader3435 7 หลายเดือนก่อน

    fantastic work Shah Sahb

  • @asthanarohitrohan
    @asthanarohitrohan 7 หลายเดือนก่อน

    Hello sir. Can you please explain how can we check the model fitness of the TVP-VAR model?

    • @hamayoonshah1990
      @hamayoonshah1990 6 หลายเดือนก่อน

      It's fitness is actually the magnitude of the spillover, no other measure like F_statistics etc

  • @mohammedhassen2558
    @mohammedhassen2558 7 หลายเดือนก่อน

    could you share the data for exercise

  • @lethiminhhuong8589
    @lethiminhhuong8589 7 หลายเดือนก่อน

    Thank you so much professor, I appreciate your sharing. It's really useful. Can you explain to me: whether connectedness and spillover are the same or different?

    • @hamayoonshah1990
      @hamayoonshah1990 7 หลายเดือนก่อน

      Thanks for your appreciations. Yes it is the same with the slight modifications

  • @muhammadanjum4286
    @muhammadanjum4286 7 หลายเดือนก่อน

    Sir Urdu ma video b bania.thanks

  • @asimasiddique5428
    @asimasiddique5428 7 หลายเดือนก่อน

    Dear sir thank so much for this wonderful video. I have run this model successfully. But my question is that pair-wise network connectdness model draw all variables plots in one digram. If we have more than one dependent variables and more than one independent variables. And i just wanted that only connectdness being checked between the independent and dependent variables rather than connectdness being checked between 2 independent variables. Is it possible?

    • @hamayoonshah1990
      @hamayoonshah1990 หลายเดือนก่อน

      @@asimasiddique5428 it is possible, you need to download the data of the pairwise first and then plot specifically those that you want through Ggplot package.

  • @Maxxxmood
    @Maxxxmood 8 หลายเดือนก่อน

    Hello Hamayoon, could you please make a video about the TVP-VAR model. Why we use it? How to use it? Please give some fundamentsl basics, you will help me a lot. I can't find information about this model in the Internet. There is of course an article about this model^ but it is to complicated. Please help to a student!!!!!!