<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Economics sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/996166" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3755722" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3749738" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3751127" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3752366" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3739392" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3017901" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3731000" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3726692" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3726754" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3723894" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3712289" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3699792" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3694627" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3657762" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3638626" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3608816" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3605935" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3603826" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3602661" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/996166">
    <title>Get standard errors for MLE of Subbotin Distribution?</title>
    <link>https://community.wolfram.com/groups/-/m/t/996166</link>
    <description>Hello everyone! :) &#xD;
&#xD;
I tried to estimate the standard errors of fitted Subbotin (exponential power) distribution parameters which have been calculated with FindDistributionParameters. Therefore I used the bootstrap method:&#xD;
&#xD;
    dist = ExponentialPowerDistribution[a,b,c];data = eurjpylogret;&#xD;
    (*Fit distribution parameters*)Parametersfit = FindDistributionParameters[data, dist]&#xD;
    (*Bootstrapping*)Bootstrapping := {a, b,c} /. FindDistributionParameters[RandomChoice[data, Length@data], dist];&#xD;
    BootEstimates = ParallelTable[Bootstrapping, {10000}];&#xD;
    (*Bootstrapped SD estimation*) BootStd = StandardDeviation /@Transpose[BootEstimates]&#xD;
&#xD;
Unfortunately I always get the error message when it comes to the standard errors:&#xD;
&#xD;
    NMaximize::cvmit : Failed to converge to the requested accuracy or precision within 100 iterations.&#xD;
    General::stop :  Further output of NMaximize::cvmit will be suppressed during this calculation. &#xD;
&#xD;
&#xD;
And so on (it doesn&amp;#039;t run out - I don&amp;#039;t get a result).&#xD;
&#xD;
The data I like to fit a Subbotin to are daily log-returns of the EUR/JPY exchange rate from 2006 to 2016. They look as follows (not complete - example):&#xD;
&#xD;
    {0.00312643, 0.000780082, -0.00750093, -0.000523903, 0.00137466, 0.00398238, 0.0055229, 0.00394478, 0.00257832, -0.00193311, 0.,&#xD;
    -0.00452519, 0.00735914, 0.0033389, -0.000962001, 0.00262728, -0.00102446, 0.00326181, 0.00204121, 0.00527504, 0., -0.010514,&#xD;
    -0.0100432, -0.000841506, 0.00542497, -0.00174053, 0.00752052, -0.00590882, 0.0048837, 0.00172927, -0.00333312, 0.00665517,&#xD;
    0.00216616, 0.00254243, 0.00310569, 0.0002531, -0.00749353, -0.00108422, 0.00629753, 0.00183725, -0.00456767, -0.00267414,&#xD;
    0.00496058, -0.0113565, -0.0018625, 0.00755687, 0.00597928, 0.00240704, -0.000759494, 0.000316526, 0.00353826, -0.00486834,&#xD;
    -0.00961638, 0.00472422, 0.00634882, 0.00567968, 0.000566198, 0.00219884, -0.00408741, -0.00644796, -0.00783119, -0.00660534,&#xD;
    -0.00976311, -0.0195519, 0.0115936, 0.000785597, 0.00788714, 0.00168667, 0.00103654, -0.00194439, -0.00311891, 0.00926322,&#xD;
    0.00341154, 0.00352802, -0.000128074, 0.0031331, 0.00401389, -0.00395006, 0.00255021, 0.00546102, -0.00973631, 0.00236324,&#xD;
    0.00362977, 0.000190676, 0.00747123, 0.00107178, 0.00188857, 0.00658206, -0.000312451, 0.00386751, -0.000435906, 0.00874397,&#xD;
    -0.000926584, -0.00644804, -0.00398879, 0.00820951, -0.00335029, 0.00297859, 0.00346385, 0.00191234, 0.00307674, 0.000368573,&#xD;
    0.00282122, 0.00116297, -0.00195946, 0.000980212, -0.00626538, 0.00036964, 0.00313644, -0.0086335, 0.0098608, 0.000122647,&#xD;
    0.00342802, 0.000794111, -0.0047128, 0.00196127, 0.000918021, 0.00232189, -0.00397493, 0.00183655, 0.00128358, 0.00317131,&#xD;
    -0.00592386, 0.00183587, 0.00152732, 0.00323023, 0.000486677, -0.00457192, -0.00146744, -0.00632234, 0.000923219, 0.0000615176,&#xD;
    -0.000246093, 0.00637882, 0.00524423, 0.00630534, 0., 0.00253516, -0.00229344, 0.00752449, -0.00324364, -0.00259044, -0.00659669,&#xD;
    0.00557071, 0.00614016, 0.000180023, -0.000180023, 0.00143928, 0.00137737, 0.00280874, 0.00333632, -0.00160719, -0.00280388,&#xD;
    0.0059563, 0.00172071, -0.00499228, 0.00136941, 0.00136754, 0.00213675, -0.00118652, -0.00523748, -0.00215054, -0.010037,&#xD;
    -0.00624112}&#xD;
&#xD;
Can someone please help me? I tried to solve and asked for help in the stackoverflow forum already, however, noone could help me to solve it there.&#xD;
&#xD;
Thank you in advance!&#xD;
&#xD;
Best regards Alex</description>
    <dc:creator>Alexander Hempfing</dc:creator>
    <dc:date>2017-01-16T09:23:27Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3755722">
    <title>Samuelson economic model with real GDP data</title>
    <link>https://community.wolfram.com/groups/-/m/t/3755722</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/1ccab695-13cb-4797-9ca6-3058727bbae5</description>
    <dc:creator>Maher Kuzbari</dc:creator>
    <dc:date>2026-07-10T16:29:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3749738">
    <title>[WSRP26] A model of economic trade using cellular automata</title>
    <link>https://community.wolfram.com/groups/-/m/t/3749738</link>
    <description>![A Model of Economic Trade Using Cellular Automata][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2026-07-09at11.20.49%E2%80%AFAM.png&amp;amp;userId=3749498&#xD;
  [2]: https://www.wolframcloud.com/obj/79a7b748-a9c6-4523-999a-4dbd70082280</description>
    <dc:creator>Lucas Fugate</dc:creator>
    <dc:date>2026-07-09T15:22:56Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3751127">
    <title>[WSRP26] Developing complex networks by modeling wealth exchange through agent based models</title>
    <link>https://community.wolfram.com/groups/-/m/t/3751127</link>
    <description>![Developing complex networks by modeling wealth exchange through agent based models][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2026-07-09at1.35.54%E2%80%AFPM.png&amp;amp;userId=3750720&#xD;
  [2]: https://www.wolframcloud.com/obj/8338bed2-7b18-4f8f-9ccb-23c7fec819c3</description>
    <dc:creator>Ojasvi Singla</dc:creator>
    <dc:date>2026-07-09T19:23:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3752366">
    <title>[WSRP26] Evaluating the relationship between export diversification and economic development</title>
    <link>https://community.wolfram.com/groups/-/m/t/3752366</link>
    <description>![Evaluating the relationship between export diversification and economic development][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ProductSpace.png&amp;amp;userId=3751600&#xD;
  [2]: https://www.wolframcloud.com/obj/5098512b-fb45-4881-8060-e4cefe135005</description>
    <dc:creator>Jacob Chung</dc:creator>
    <dc:date>2026-07-09T21:00:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3739392">
    <title>Stable 2:3 order statistic distribution for stock market returns</title>
    <link>https://community.wolfram.com/groups/-/m/t/3739392</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/c3fad79c-0458-4901-8177-944b192d22da</description>
    <dc:creator>Robert Rimmer</dc:creator>
    <dc:date>2026-06-27T01:40:35Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3017901">
    <title>Privatization under Political Ties</title>
    <link>https://community.wolfram.com/groups/-/m/t/3017901</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/88e82c7f-61b9-4edd-a2c6-45ef12c405b9</description>
    <dc:creator>Matteo Broso</dc:creator>
    <dc:date>2023-09-21T19:27:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3731000">
    <title>Cities as social reactors: Bettencourt 2013 urban scaling replicated across 46 UK cities</title>
    <link>https://community.wolfram.com/groups/-/m/t/3731000</link>
    <description>![Cities as social reactors: Bettencourt 2013 urban scaling replicated across 46 UK cities][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Video-dd159c55-c43d-4c58-9770-057ee8bc2922.gif&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/176937c7-3644-4af8-a8b8-92b995c879ca</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2026-06-10T12:02:46Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3726692">
    <title>Is there an inverted-U curve between income level and FDI&amp;#039;s effect on economic growth?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3726692</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/d95a454f-d824-4297-96f0-18451808477f</description>
    <dc:creator>Manami Nomura</dc:creator>
    <dc:date>2026-06-04T01:05:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3726754">
    <title>[WELPU25] To what extent is The Phillips Curve still applicable?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3726754</link>
    <description>[![To what extent is The Phillips Curve still applicable?][1]][2]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][3]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=TowhatextentisThePhillipsCurvestillapplicable.png&amp;amp;userId=20103&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=TowhatextentisThePhillipsCurvestillapplicable.png&amp;amp;userId=20103&#xD;
  [3]: https://www.wolframcloud.com/obj/2363af94-d6ab-4870-a0b4-44e615b4e0d5</description>
    <dc:creator>Damla Temur</dc:creator>
    <dc:date>2026-06-03T23:57:46Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3723894">
    <title>German + British petrol prices: an empirical study</title>
    <link>https://community.wolfram.com/groups/-/m/t/3723894</link>
    <description>![German + British petrol prices: an empirical study][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Video-5cd60f40-2d31-47e9-8c33-1fa7d6633b5c.gif&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/2dc2e9cb-7c05-4aab-81a9-711a9521b391</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2026-05-29T16:15:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3712289">
    <title>Designing and valuing new equity-linked insurance products for couples</title>
    <link>https://community.wolfram.com/groups/-/m/t/3712289</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/9af03481-1a59-44a3-aa51-7c9463659f62</description>
    <dc:creator>Eric Cheung</dc:creator>
    <dc:date>2026-05-05T17:25:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3699792">
    <title>Wavelet analysis of U.S. petroleum export trends (1973&amp;#x2013;2026) via EIA data</title>
    <link>https://community.wolfram.com/groups/-/m/t/3699792</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/0e8340b8-e38d-4ec0-934f-44ad1b750759</description>
    <dc:creator>Dara Shayda</dc:creator>
    <dc:date>2026-04-21T23:09:32Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3694627">
    <title>Animate the CNN fear and greed index gauge</title>
    <link>https://community.wolfram.com/groups/-/m/t/3694627</link>
    <description>![Animate the CNN fear and greed index gauge][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=2026-04-18_08-21-01%281%29.gif&amp;amp;userId=23928&#xD;
  [2]: https://www.wolframcloud.com/obj/78e1cc5e-337f-4db8-a96f-39e8aec8ce98</description>
    <dc:creator>Shenghui Yang</dc:creator>
    <dc:date>2026-04-18T01:00:43Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3657762">
    <title>How Does Human Capital Impact the FDI&amp;#039;s Effects on GDP Growth?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3657762</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/2f46ec42-8224-4ecd-a414-4a29e75a8193</description>
    <dc:creator>Manami Nomura</dc:creator>
    <dc:date>2026-03-12T01:15:10Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3638626">
    <title>[WELP25] Simulating semiconductor supply shocks in global production networks</title>
    <link>https://community.wolfram.com/groups/-/m/t/3638626</link>
    <description>![Simulating Semiconductor Supply Shocks in Global Production Networks][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=3938image.png&amp;amp;userId=911151&#xD;
  [2]: https://www.wolframcloud.com/obj/5163c8fd-9222-4a79-8fee-2e59c6154d0b</description>
    <dc:creator>Wolfram Education Programs</dc:creator>
    <dc:date>2026-02-11T16:31:35Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3608816">
    <title>Introduction to dynamic economic models: the circuit of capital model</title>
    <link>https://community.wolfram.com/groups/-/m/t/3608816</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/636fd852-6789-4b3c-a162-d354f7623587</description>
    <dc:creator>Hee-Young Shin</dc:creator>
    <dc:date>2026-01-16T19:00:20Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3605935">
    <title>Introduction to dynamic economic models: Romer&amp;#039;s endogenous growth model</title>
    <link>https://community.wolfram.com/groups/-/m/t/3605935</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/c90bf7f7-ce89-4ad0-b0fd-70ff148c8a9b</description>
    <dc:creator>Hee-Young Shin</dc:creator>
    <dc:date>2026-01-13T17:59:18Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3603826">
    <title>Introduction to dynamic economic models: the real business cycle model</title>
    <link>https://community.wolfram.com/groups/-/m/t/3603826</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/f585031e-e4ba-4b7c-aabb-79f2e4f9810b</description>
    <dc:creator>Hee-Young Shin</dc:creator>
    <dc:date>2026-01-09T17:12:34Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3602661">
    <title>Introduction to dynamic economic models: the Solow growth models</title>
    <link>https://community.wolfram.com/groups/-/m/t/3602661</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/ac8053d1-7495-4692-9135-70ec8c3a04c9</description>
    <dc:creator>Hee-Young Shin</dc:creator>
    <dc:date>2026-01-07T20:45:11Z</dc:date>
  </item>
</rdf:RDF>

