Crowdfunding: cross-country analysis

Analysis of projects at crowdfunding venues in different countries. Methods to attract interest from potential sponsor. Managerial factors affecting the increased likelihood of a successful start-up project. Overview of the Russian crowdfunding platform.

Рубрика Менеджмент и трудовые отношения
Вид дипломная работа
Язык английский
Дата добавления 04.12.2019
Размер файла 5,2 M

Отправить свою хорошую работу в базу знаний просто. Используйте форму, расположенную ниже

Студенты, аспиранты, молодые ученые, использующие базу знаний в своей учебе и работе, будут вам очень благодарны.

Appendix 3

ROC-curves for country-specific probit model (0 - more than 0% but less than 100% pledged, 1 - 100% and more pledged).

Appendix 4

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged).

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for Russia

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for Russia

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for Australia

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for Canada

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for Great Britain

Average marginal effects for country-specific probit model (0 - less than 100%, but more than 0% pledged, 1 - 100% and more pledged) for squared logarithm of targeted sum variable for USA

Appendix 5

ROC-curves for boomstarter probit models

Appendix 6

Average marginal effects for boomstarter probit models.

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if the percentage collected = 0%, 1 if the percentage is more than 0% and less than 100% without author-specific variables

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if the percentage collected = 0%, 1 if percentage is more than 0% and less than 100% with author-specific variables

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if the percentage collected = 0%, 1 if percentage is more than or equal to 100% without author-specific variables

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if the percentage collected = 0%, 1 if percentage is more than or equal to 100% with author-specific variables

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if percentage is more than 0% and less than 100%, 1 if percentage is more than or equal to 100% without author-specific variables

Average marginal effects for Boomstarter probit model with the dependent variable = 0 if percentage is more than 0% and less than 100%, 1 if percentage is more than or equal to 100% with author-specific variables

Appendix 7

STATA do-file code.

Importing dataset, installing packages and generating variables:

import excel "C:\Users\maliv\OneDrive - НИУ Высшая школа экономики\diploma\data\Boomstarter data -- копия.xlsx", sheet("BoomVK") firstrow

ssc install asdoc

ssc install outreg

ssc install margins

cd C:\Users\user\Documents

gen ln_percentage=ln(percentage+0.0001)

gen ln_goal=ln(goal+0.0001)

gen ln_goal2=ln_goal*ln(goal)

destring alcohol, replace

destring people_main, replace

gen ln_biography_length=ln(biography_length+0.0001)

gen ln_followers_number=ln(followers_number+0.0001)

gen per_category = 0 if percentage ==0

replace per_category = 1 if 0<percentage<1

replace per_category = 0 if percentage==0

gen per_category2 = 0 if percentage ==0

replace per_category2 = 1 if percentage>=1

gen per_category3 = 0 if percentage >0

replace per_category3 = 1 if percentage>=1

gen ln_backers = ln(backers +0.001)

gen ln_backers2 = ln_backers*ln_backers

gen ln_biography_length2 = ln_biography_length*ln_biography_length

gen ln_age = ln(age+0.0001)

gen ln_age2 = ln_age*ln_age

gen percent = 0 if percentage == 0 /* for two datasets

replace percent = 1 if percentage>0

replace percent = 2 if percentage>=1

replace percent =. if au ==. & ca ==. & gb ==. & us ==.

For Kickstarter:

asdoc by percent, sort: sum goal0 backers if percent !=. & cat_num2 !=., append

esttab using "1000.xls", wide nonumber mtitle("diff01")

estpost ttest goal0 backers if percent !=. & cat_num2!=. & ca == 1, by(per_category3)

esttab using "2000.xls", wide nonumber mtitle("diff02")

estpost ttest goal0 backers if percent !=. & cat_num2!=. & gb == 1, by(per_category3)

esttab using "3000.xls", wide nonumber mtitle("diff03")

estpost ttest goal0 backers if percent !=. & cat_num2!=. & us == 1, by(per_category3)

esttab using "4000.xls", wide nonumber mtitle("diff04")

asdoc pwcorr percentage goal0 backers if nomiss ==1, star(.05) obs

asdoc by percent, sort: sum goal0 biography_length followers_count age sex sites facebook if nomiss ==1, replace

For Boomstarter:

estpost ttest goal0 biography_length followers_count age sex sites facebook if nomiss ==1, by(per_category)

esttab using "hren1.xls", wide nonumber mtitle("diff01")

estpost ttest goal0 biography_length followers_count age sex sites facebook if nomiss ==1, by(per_category2)

esttab using "hren2.xls", wide nonumber mtitle("diff01")

estpost ttest goal0 biography_length followers_count age sex sites facebook if nomiss ==1, by(per_category3)

esttab using "hren3.xls", wide nonumber mtitle("diff01")

Cross-country regression models:

outreg2 using my.xls: probit per_category2 ln_goal i.cat_num2 , r /*Boomstarter

outreg2 using my.xls: probit per_category2 ln_goal ln_goal2 i.cat_num2 if au == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category2 ln_goal ln_goal2 i.cat_num2 if ca == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category2 ln_goal ln_goal2 i.cat_num2 if gb == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category2 ln_goal ln_goal2 i.cat_num2 if us == 1 & cat_num2 !=., r /*Kickstarter

estat gof /* for all regressions above

lroc per_category2, name gr1..5 /* for all regressions above

gr combine gr1 gr2 gr3 gr4 gr5

margins, dydx(*) /* for all regressions above

outreg using myy.xls, stat(b_dfdx se_dfdx) bdec(3) nocons for all margins above

outreg2 using my.xls: probit per_category3 ln_goal i.cat_num2 , r /*Boomstarter

outreg2 using my.xls: probit per_category3 ln_goal ln_goal2 i.cat_num2 if au == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category3 ln_goal ln_goal2 i.cat_num2 if ca == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category3 ln_goal ln_goal2 i.cat_num2 if gb == 1 & cat_num2 !=., r /*Kickstarter

outreg2 using my.xls: probit per_category3 ln_goal ln_goal2 i.cat_num2 if us == 1 & cat_num2 !=., r /*Kickstarter

estat gof /* for all regressions above

lroc per_category2, name gr1..5 /* for all regressions above

gr combine gr1 gr2 gr3 gr4 gr5

margins, dydx(*) /* for all regressions above

Boomstarter regression models:

probit per_category ln_goal ln_biography_length ln_followers_count c.ln_age##c.ln_age sex sites facebook i.city_num b3.cat_num, r

estat sum

probit per_category c.ln_goal##c.ln_goal c.ln_biography_length##c.ln_biography_length sites facebook i.city_num b2.cat_num, r

estat sum

probit per_category2 ln_goal ln_biography_length ln_followers_count c.ln_age##c.ln_age sex sites facebook i.city_num b2.cat_num, r

estat sum

probit per_category2 ln_goal ln_biography_length sites facebook i.city_num b2.cat_num, r

probit per_category3 ln_goal ln_biography_length sites facebook i.city_num b2.cat_num, r

probit per_category3 c.ln_goal##c.ln_goal ln_biography_length ln_followers_count c.ln_age##c.ln_age sex sites facebook i.city_num b1.cat_num, r

estat gof /* for all regressions above

lroc per_category2, name gr1..5 /* for all regressions above

gr combine gr1 gr2 gr3 gr4 gr5

margins, dydx(*) /* for all regressions above

Marginplots for all regressions both for Kickstarter and Boomstarter:

margins, at(ln_age=(3.0 (0.5) 5.0))

marginsplot

margins, at(ln_age2=(7 (1.5) 22))

marginsplot

margins, at(ln_goal = (7(2) 23))

marginsplot

margins, at(ln_goal2 = (18(50) 500))

marginsplot

margins, at(ln_biography_length = (-10(2) 10))

marginsplot

margins, at(ln_biography_length2 = (7(1.5) 23))

marginsplot

margins, at(ln_followers_count = (1.5(1.5) 13.5))

marginsplot

Размещено на Allbest.ru

...

Подобные документы

  • Critical literature review. Apparel industry overview: Porter’s Five Forces framework, PESTLE, competitors analysis, key success factors of the industry. Bershka’s business model. Integration-responsiveness framework. Critical evaluation of chosen issue.

    контрольная работа [29,1 K], добавлен 04.10.2014

  • Selected aspects of stimulation of scientific thinking. Meta-skills. Methods of critical and creative thinking. Analysis of the decision-making methods without use of numerical values of probability (exemplificative of the investment projects).

    аттестационная работа [196,7 K], добавлен 15.10.2008

  • Evaluation of urban public transport system in Indonesia, the possibility of its effective development. Analysis of influence factors by using the Ishikawa Cause and Effect diagram and also the use of Pareto analysis. Using business process reengineering.

    контрольная работа [398,2 K], добавлен 21.04.2014

  • Searching for investor and interaction with him. Various problems in the project organization and their solutions: design, page-proof, programming, the choice of the performers. Features of the project and the results of its creation, monetization.

    реферат [22,0 K], добавлен 14.02.2016

  • About cross-cultural management. Differences in cross-cultural management. Differences in methods of doing business. The globalization of the world economy and the role of cross-cultural relations. Cross-cultural issues in International Management.

    контрольная работа [156,7 K], добавлен 14.04.2014

  • Analysis of the peculiarities of the mobile applications market. The specifics of the process of mobile application development. Systematization of the main project management methodologies. Decision of the problems of use of the classical methodologies.

    контрольная работа [1,4 M], добавлен 14.02.2016

  • Стратегический менеджмент: теоретические подходы к исследованию. История возникновения стратегического менеджмента, его функции и принципы. Start-up как стратегия развития бизнеса. Реализация start-up проектов в России, анализ самых успешных из них.

    курсовая работа [122,3 K], добавлен 16.12.2014

  • Impact of globalization on the way organizations conduct their businesses overseas, in the light of increased outsourcing. The strategies adopted by General Electric. Offshore Outsourcing Business Models. Factors for affect the success of the outsourcing.

    реферат [32,3 K], добавлен 13.10.2011

  • Nonverbal methods of dialogue and wrong interpretation of gestures. Historical both a cultural value and universal components of language of a body. Importance of a mimicry in a context of an administrative communication facility and in an everyday life.

    эссе [19,0 K], добавлен 27.04.2011

  • Программный комплекс Project Expert, оценка его возможностей и функциональные особенности, структура и основные элементы. Microsoft Project как наиболее популярный в среде менеджеров малых и средних проектов. Программный комплекс Primavera, его функции.

    курсовая работа [262,4 K], добавлен 06.01.2011

  • Цели, задачи и методы управления строительным проектом. Методология управления проектом посредством пакета Rillsoft Project 5.3. Создание работы в таблице Гантта. Краткий обзор использования основных команд и инструментов системы Rillsoft Project 5.3.

    курсовая работа [1,7 M], добавлен 24.05.2015

  • The main reasons for the use of virtual teams. Software development. Areas that are critical to the success of software projects, when they are designed with the use of virtual teams. A relatively small group of people with complementary skills.

    реферат [16,4 K], добавлен 05.12.2012

  • Types of the software for project management. The reasonability for usage of outsourcing in the implementation of information systems. The efficiency of outsourcing during the process of creating basic project plan of information system implementation.

    реферат [566,4 K], добавлен 14.02.2016

  • Отработка приемов создания и моделирования экономической части стратегических планов организаций в системе Project Expert 6. Анализ влияния финансовых рисков на эффективность инвестиционных проектов. Составление отчета сформированного программой.

    контрольная работа [27,5 K], добавлен 25.12.2015

  • Создание и моделирование экономической части стратегических планов организаций в системе Project Expert 6. Построение финансовой модели предприятия и определение потребности в финансировании. Анализ финансовых результатов. Формирование и печать отчета.

    курсовая работа [92,4 K], добавлен 16.12.2015

  • Description of the structure of the airline and the structure of its subsystems. Analysis of the main activities of the airline, other goals. Building the “objective tree” of the airline. Description of the environmental features of the transport company.

    курсовая работа [1,2 M], добавлен 03.03.2013

  • The concept and features of bankruptcy. Methods prevent bankruptcy of Russian small businesses. General characteristics of crisis management. Calculating the probability of bankruptcy discriminant function in the example of "Kirov Plant "Mayak".

    курсовая работа [74,5 K], добавлен 18.05.2015

  • Понятие проекта и общие принципы управления при сетевом планировании. Анализ деятельности менеджера компании, построение сетевой модели и расчёт показателей календарного плана, оптимизация модели. Создание проекта для АРМ менеджера в среде MS Project.

    курсовая работа [565,4 K], добавлен 17.06.2012

  • Value and probability weighting function. Tournament games as special settings for a competition between individuals. Model: competitive environment, application of prospect theory. Experiment: design, conducting. Analysis of experiment results.

    курсовая работа [1,9 M], добавлен 20.03.2016

  • Formation of intercultural business communication, behavior management and communication style in multicultural companies in the internationalization and globalization of business. The study of the branch of the Swedish-Chinese company, based in Shanghai.

    статья [16,2 K], добавлен 20.03.2013

Работы в архивах красиво оформлены согласно требованиям ВУЗов и содержат рисунки, диаграммы, формулы и т.д.
PPT, PPTX и PDF-файлы представлены только в архивах.
Рекомендуем скачать работу.