• Title/Summary/Keyword: Marketing research

Search Result 5,243, Processing Time 0.034 seconds

Sentiment Analysis of Movie Review Using Integrated CNN-LSTM Mode (CNN-LSTM 조합모델을 이용한 영화리뷰 감성분석)

  • Park, Ho-yeon;Kim, Kyoung-jae
    • Journal of Intelligence and Information Systems
    • /
    • v.25 no.4
    • /
    • pp.141-154
    • /
    • 2019
  • Rapid growth of internet technology and social media is progressing. Data mining technology has evolved to enable unstructured document representations in a variety of applications. Sentiment analysis is an important technology that can distinguish poor or high-quality content through text data of products, and it has proliferated during text mining. Sentiment analysis mainly analyzes people's opinions in text data by assigning predefined data categories as positive and negative. This has been studied in various directions in terms of accuracy from simple rule-based to dictionary-based approaches using predefined labels. In fact, sentiment analysis is one of the most active researches in natural language processing and is widely studied in text mining. When real online reviews aren't available for others, it's not only easy to openly collect information, but it also affects your business. In marketing, real-world information from customers is gathered on websites, not surveys. Depending on whether the website's posts are positive or negative, the customer response is reflected in the sales and tries to identify the information. However, many reviews on a website are not always good, and difficult to identify. The earlier studies in this research area used the reviews data of the Amazon.com shopping mal, but the research data used in the recent studies uses the data for stock market trends, blogs, news articles, weather forecasts, IMDB, and facebook etc. However, the lack of accuracy is recognized because sentiment calculations are changed according to the subject, paragraph, sentiment lexicon direction, and sentence strength. This study aims to classify the polarity analysis of sentiment analysis into positive and negative categories and increase the prediction accuracy of the polarity analysis using the pretrained IMDB review data set. First, the text classification algorithm related to sentiment analysis adopts the popular machine learning algorithms such as NB (naive bayes), SVM (support vector machines), XGboost, RF (random forests), and Gradient Boost as comparative models. Second, deep learning has demonstrated discriminative features that can extract complex features of data. Representative algorithms are CNN (convolution neural networks), RNN (recurrent neural networks), LSTM (long-short term memory). CNN can be used similarly to BoW when processing a sentence in vector format, but does not consider sequential data attributes. RNN can handle well in order because it takes into account the time information of the data, but there is a long-term dependency on memory. To solve the problem of long-term dependence, LSTM is used. For the comparison, CNN and LSTM were chosen as simple deep learning models. In addition to classical machine learning algorithms, CNN, LSTM, and the integrated models were analyzed. Although there are many parameters for the algorithms, we examined the relationship between numerical value and precision to find the optimal combination. And, we tried to figure out how the models work well for sentiment analysis and how these models work. This study proposes integrated CNN and LSTM algorithms to extract the positive and negative features of text analysis. The reasons for mixing these two algorithms are as follows. CNN can extract features for the classification automatically by applying convolution layer and massively parallel processing. LSTM is not capable of highly parallel processing. Like faucets, the LSTM has input, output, and forget gates that can be moved and controlled at a desired time. These gates have the advantage of placing memory blocks on hidden nodes. The memory block of the LSTM may not store all the data, but it can solve the CNN's long-term dependency problem. Furthermore, when LSTM is used in CNN's pooling layer, it has an end-to-end structure, so that spatial and temporal features can be designed simultaneously. In combination with CNN-LSTM, 90.33% accuracy was measured. This is slower than CNN, but faster than LSTM. The presented model was more accurate than other models. In addition, each word embedding layer can be improved when training the kernel step by step. CNN-LSTM can improve the weakness of each model, and there is an advantage of improving the learning by layer using the end-to-end structure of LSTM. Based on these reasons, this study tries to enhance the classification accuracy of movie reviews using the integrated CNN-LSTM model.

Aspect-Based Sentiment Analysis Using BERT: Developing Aspect Category Sentiment Classification Models (BERT를 활용한 속성기반 감성분석: 속성카테고리 감성분류 모델 개발)

  • Park, Hyun-jung;Shin, Kyung-shik
    • Journal of Intelligence and Information Systems
    • /
    • v.26 no.4
    • /
    • pp.1-25
    • /
    • 2020
  • Sentiment Analysis (SA) is a Natural Language Processing (NLP) task that analyzes the sentiments consumers or the public feel about an arbitrary object from written texts. Furthermore, Aspect-Based Sentiment Analysis (ABSA) is a fine-grained analysis of the sentiments towards each aspect of an object. Since having a more practical value in terms of business, ABSA is drawing attention from both academic and industrial organizations. When there is a review that says "The restaurant is expensive but the food is really fantastic", for example, the general SA evaluates the overall sentiment towards the 'restaurant' as 'positive', while ABSA identifies the restaurant's aspect 'price' as 'negative' and 'food' aspect as 'positive'. Thus, ABSA enables a more specific and effective marketing strategy. In order to perform ABSA, it is necessary to identify what are the aspect terms or aspect categories included in the text, and judge the sentiments towards them. Accordingly, there exist four main areas in ABSA; aspect term extraction, aspect category detection, Aspect Term Sentiment Classification (ATSC), and Aspect Category Sentiment Classification (ACSC). It is usually conducted by extracting aspect terms and then performing ATSC to analyze sentiments for the given aspect terms, or by extracting aspect categories and then performing ACSC to analyze sentiments for the given aspect category. Here, an aspect category is expressed in one or more aspect terms, or indirectly inferred by other words. In the preceding example sentence, 'price' and 'food' are both aspect categories, and the aspect category 'food' is expressed by the aspect term 'food' included in the review. If the review sentence includes 'pasta', 'steak', or 'grilled chicken special', these can all be aspect terms for the aspect category 'food'. As such, an aspect category referred to by one or more specific aspect terms is called an explicit aspect. On the other hand, the aspect category like 'price', which does not have any specific aspect terms but can be indirectly guessed with an emotional word 'expensive,' is called an implicit aspect. So far, the 'aspect category' has been used to avoid confusion about 'aspect term'. From now on, we will consider 'aspect category' and 'aspect' as the same concept and use the word 'aspect' more for convenience. And one thing to note is that ATSC analyzes the sentiment towards given aspect terms, so it deals only with explicit aspects, and ACSC treats not only explicit aspects but also implicit aspects. This study seeks to find answers to the following issues ignored in the previous studies when applying the BERT pre-trained language model to ACSC and derives superior ACSC models. First, is it more effective to reflect the output vector of tokens for aspect categories than to use only the final output vector of [CLS] token as a classification vector? Second, is there any performance difference between QA (Question Answering) and NLI (Natural Language Inference) types in the sentence-pair configuration of input data? Third, is there any performance difference according to the order of sentence including aspect category in the QA or NLI type sentence-pair configuration of input data? To achieve these research objectives, we implemented 12 ACSC models and conducted experiments on 4 English benchmark datasets. As a result, ACSC models that provide performance beyond the existing studies without expanding the training dataset were derived. In addition, it was found that it is more effective to reflect the output vector of the aspect category token than to use only the output vector for the [CLS] token as a classification vector. It was also found that QA type input generally provides better performance than NLI, and the order of the sentence with the aspect category in QA type is irrelevant with performance. There may be some differences depending on the characteristics of the dataset, but when using NLI type sentence-pair input, placing the sentence containing the aspect category second seems to provide better performance. The new methodology for designing the ACSC model used in this study could be similarly applied to other studies such as ATSC.

SKU recommender system for retail stores that carry identical brands using collaborative filtering and hybrid filtering (협업 필터링 및 하이브리드 필터링을 이용한 동종 브랜드 판매 매장간(間) 취급 SKU 추천 시스템)

  • Joe, Denis Yongmin;Nam, Kihwan
    • Journal of Intelligence and Information Systems
    • /
    • v.23 no.4
    • /
    • pp.77-110
    • /
    • 2017
  • Recently, the diversification and individualization of consumption patterns through the web and mobile devices based on the Internet have been rapid. As this happens, the efficient operation of the offline store, which is a traditional distribution channel, has become more important. In order to raise both the sales and profits of stores, stores need to supply and sell the most attractive products to consumers in a timely manner. However, there is a lack of research on which SKUs, out of many products, can increase sales probability and reduce inventory costs. In particular, if a company sells products through multiple in-store stores across multiple locations, it would be helpful to increase sales and profitability of stores if SKUs appealing to customers are recommended. In this study, the recommender system (recommender system such as collaborative filtering and hybrid filtering), which has been used for personalization recommendation, is suggested by SKU recommendation method of a store unit of a distribution company that handles a homogeneous brand through a plurality of sales stores by country and region. We calculated the similarity of each store by using the purchase data of each store's handling items, filtering the collaboration according to the sales history of each store by each SKU, and finally recommending the individual SKU to the store. In addition, the store is classified into four clusters through PCA (Principal Component Analysis) and cluster analysis (Clustering) using the store profile data. The recommendation system is implemented by the hybrid filtering method that applies the collaborative filtering in each cluster and measured the performance of both methods based on actual sales data. Most of the existing recommendation systems have been studied by recommending items such as movies and music to the users. In practice, industrial applications have also become popular. In the meantime, there has been little research on recommending SKUs for each store by applying these recommendation systems, which have been mainly dealt with in the field of personalization services, to the store units of distributors handling similar brands. If the recommendation method of the existing recommendation methodology was 'the individual field', this study expanded the scope of the store beyond the individual domain through a plurality of sales stores by country and region and dealt with the store unit of the distribution company handling the same brand SKU while suggesting a recommendation method. In addition, if the existing recommendation system is limited to online, it is recommended to apply the data mining technique to develop an algorithm suitable for expanding to the store area rather than expanding the utilization range offline and analyzing based on the existing individual. The significance of the results of this study is that the personalization recommendation algorithm is applied to a plurality of sales outlets handling the same brand. A meaningful result is derived and a concrete methodology that can be constructed and used as a system for actual companies is proposed. It is also meaningful that this is the first attempt to expand the research area of the academic field related to the existing recommendation system, which was focused on the personalization domain, to a sales store of a company handling the same brand. From 05 to 03 in 2014, the number of stores' sales volume of the top 100 SKUs are limited to 52 SKUs by collaborative filtering and the hybrid filtering method SKU recommended. We compared the performance of the two recommendation methods by totaling the sales results. The reason for comparing the two recommendation methods is that the recommendation method of this study is defined as the reference model in which offline collaborative filtering is applied to demonstrate higher performance than the existing recommendation method. The results of this model are compared with the Hybrid filtering method, which is a model that reflects the characteristics of the offline store view. The proposed method showed a higher performance than the existing recommendation method. The proposed method was proved by using actual sales data of large Korean apparel companies. In this study, we propose a method to extend the recommendation system of the individual level to the group level and to efficiently approach it. In addition to the theoretical framework, which is of great value.

Structural Adjustment of Domestic Firms in the Era of Market Liberalization (시장개방(市場開放)과 국내기업(國內企業)의 구조조정(構造調整))

  • Seong, So-mi
    • KDI Journal of Economic Policy
    • /
    • v.13 no.4
    • /
    • pp.91-116
    • /
    • 1991
  • Market liberalization progressing simultaneously with high and rapidly rising domestic wages has created an adverse business environment for domestic firms. Korean firms are losing their international competitiveness in comparison to firms from LDC(Less Developed Countries) in low-tech industries. In high-tech industries, domestic firms without government protection (which is impossible due to the liberalization policy and the current international status of the Korean economy) are in a disadvantaged position relative to firms from advanced countries. This paper examines the division of roles between the private sector and the government in order to achieve a successful structural adjustment, which has become the impending industrial policy issue caused by high domestic wages, on the one hand, and the opening of domestic markets, on the other. The micro foundation of the economy-wide structural adjustment is actually the restructuring of business portfolios at the firm level. The firm-level business restructuring means that firms in low-value-added businesses or with declining market niches establish new major businesses in higher value-added segments or growing market niches. The adjustment of the business structure at the firm level can only be accomplished by accumulating firm-specific managerial assets necessary to establish a new business structure. This can be done through learning-by-doing in the whole system of management, including research and development, manufacturing, and marketing. Therefore, the voluntary cooperation among the people in the company is essential for making the cost of the learning process lower than that at the competing companies. Hence, firms that attempt to restructure their major businesses need to induce corporate-wide participation through innovations in organization and management, encourage innovative corporate culture, and maintain cooperative labor unions. Policy discussions on structural adjustments usually regard firms as a black box behind a few macro variables. But in reality, firm activities are not flows of materials but relationships among human resources. The growth potential of companies are embodied in the human resources of the firm; the balance of interest among stockholders, managers, and workers of the company' brings the accumulation of the company's core competencies. Therefore, policymakers and economists shoud change their old concept of the firm as a technological black box which produces a marketable commodities. Firms should be regarded as coalitions of interest groups such as stockholders, managers, and workers. Consequently the discussion on the structural adjustment both at the macroeconomic level and the firm level should be based on this new paradigm of understanding firms. The government's role in reducing the cost of structural adjustment and supporting should the creation of new industries emphasize the following: First, government must promote the competition in domestic markets by revising laws related to antitrust policy, bankruptcy, and the promotion of small and medium-sized companies. General consensus on the limitations of government intervention and the merit of deregulation should be sought among policymakers and people in the business world. In the age of internationalization, nation-specific competitive advantages cannot be exclusively in favor of domestic firms. The international competitiveness of a domestic firm derives from the firm-specific core competencies which can be accumulated by internal investment and organization of the firm. Second, government must build up a solid infrastructure of production factors including capital, technology, manpower, and information. Structural adjustment often entails bankruptcies and partial waste of resources. However, it is desirable for the government not to try to sustain marginal businesses, but to support the diversification or restructuring of businesses by assisting in factor creation. Institutional support for venture businesses needs to be improved, especially in the financing system since many investment projects in venture businesses are highly risky, even though they are very promising. The proportion of low-value added production processes and declining industries should be reduced by promoting foreign direct investment and factory automation. Moreover, one cannot over-emphasize the importance of future-oriented labor policies to be based on the new paradigm of understanding firm activities. The old laws and instititutions related to labor unions need to be reformed. Third, government must improve the regimes related to money, banking, and the tax system to change business practices dependent on government protection or undesirable in view of the evolution of the Korean economy as a whole. To prevent rational business decisions from contradicting to the interest of the economy as a whole, government should influence the business environment, not the business itself.

  • PDF

A Study on the Strategy for Enhancing the Service Export linked with Manufacturing Sector : focused on Stage System and Special Lighting Service (제조-서비스 연계형 수출상품화 모델 개발전략 - 무대장치 및 특수조명서비스 수출산업을 중심으로 -)

  • Park, Moon-Suh
    • International Commerce and Information Review
    • /
    • v.10 no.4
    • /
    • pp.457-491
    • /
    • 2008
  • As stage equipment export markets along with special lighting service lack the attraction for already globally established businesses, such markets can be viewed as an advantageous opportunity for SMEs as in general. In reality, global businesses tend to focus on large construction projects and this indicates relatively less substantial markets such as stage equipment and special lighting service export are more suitable for SME businesses. However, possible problems may be recognized as following; doubtful capabilities by such businesses to join in the vast and competitive global market and pursue manufacturing and service based export. This point is also supported by the fact that such in general SME businesses have substantially less experience in exporting products and services abroad. Realizing the distinctive features of the Korean economy, it is unarguable that every sector and area of global market must be regarded and monitored closely. Hence, it can be argued that there is an imminent need for establishment of supportive institution to assist export process of combination of stage equipments and special lighting service. This study emphasizes the need to improve export process of stage equipments, special lighting services as well as other related products and services which have been focused in domestic market only until now. Further, it also analyzed the potential prospect of such direction reconciling current crisis our manufacturing industry is facing. Even though it maybe regarded as one of the niche market for export of Korea in the short term view, stage equipment and special lighting service industry may rapidly grow as the global cultural industries have grown along with the increase of national income earnings overall. Due to such advantageous features, it can be expected that such industries will show strong growth in the near future. After analyzing the fact that Korea's plants (eg. powerplants) export sector is at its boom, there is a need to transform stage equipment and special lighting service export market into a primary market from a secondary(niche) market for SMEs. This study is viewed from the Korean economic and export sector aspect in the aim of seeking a solution to conquest our realistic limit in our export sector by developing a suitable export model. There have been cases of very few attempts to expand abroad by SMEs who have failed miserably due to their failure to adapt to foreign culture, practice and languages as well as substantial lack in experience in export marketing. Despite this, neglecting our manufacturing industry as it is which is showing its limit and problems is out of option therefore, it is imminent that we come up with an effective measure to address this problem and service export can be suggested as one of them. This study reveals manufacturing-service export model of stage equipment and special lighting service and its related areas is recognized as a field with a very strong future and furthermore, it is expected to bring synergy effects in manufacturing and services sector as well. Further, the operation strategy contains combination, composition and fusion(convergence) of manufacturing and service sectors which could derive various of export products which displays greater success probability or this export model. The outcome of this research is expected to become a useful source for enterprises related to such industry which are seeking a possible global expansion. Furthermore, it is also expected to become a catalyst which fastens the process of global expansion and not only that, we are firmly assured that this study will become an opportunity to improve our current policies and institutions related to this area's export market.

  • PDF

The Study of Dinning-out Behavior and Preference on Korean Foods by Age Groups (외식소비자의 연령별 외식행동과 한식에 대한 선호도 조사연구 - 서울, 경기, 천안 지역을 중심으로 -)

  • Yoon, Hei-Ryeo
    • Journal of the Korean Society of Food Culture
    • /
    • v.20 no.5
    • /
    • pp.608-614
    • /
    • 2005
  • The object of this research is to analyze and classify the dining-out behavior and preference on Korean food by age groups and to make counter proposals for better marketing and planning strategies. Major dining out motives were lack of time, the easiness of preparation, and schedule. For lunch, the schedule was the major dining-out motive. For dinner, the respondents in their 30s and below answered social gathering was their major dining-out motive (40.7% and 31.3% respectively). On the other hand, for the respondents in their 40s and 50s, the family gathering was the major dining motive (50.4% and 55.3% respectively) (${\chi}^{2}=68.081,\;p<0.001$). For dining out frequency, 1-2 dining out per a week had the highest percentage, among which the respondents in their 30s was 42.9% (the highest) and the respondents in their 50s was 18% (the lowest). For the dining-out cost, the respondents in their 30s and below spent more on dinner rather than breakfast or lunch. For the menu preference of Korean foods, Doenjangjigae had the highest percentage. In case of Kimchi, the respondents in their 40s showed higher preference than the respondents in their 30s. Interestingly, the preference for Kimchi was higher in the respondents younger than 30 rather than in the respondents in their 30s. and the respondents older than 40 (p<0.05). Preference for Jangachi was considerably low in the respondents younger than 40, which implies that younger people don't incline to traditional Korean Mitbanchan. The dining-out motive was different in each age group. Now, the dining out motive is not restricted to home meal replacement. Social gatherings are increasing and the consumers of dining-out industry are being diversified. These suggest the increased need for classifying and analyzing the consumers by age groups to get more information on consumer behavior and tastes.

A Study on the Application of Outlier Analysis for Fraud Detection: Focused on Transactions of Auction Exception Agricultural Products (부정 탐지를 위한 이상치 분석 활용방안 연구 : 농수산 상장예외품목 거래를 대상으로)

  • Kim, Dongsung;Kim, Kitae;Kim, Jongwoo;Park, Steve
    • Journal of Intelligence and Information Systems
    • /
    • v.20 no.3
    • /
    • pp.93-108
    • /
    • 2014
  • To support business decision making, interests and efforts to analyze and use transaction data in different perspectives are increasing. Such efforts are not only limited to customer management or marketing, but also used for monitoring and detecting fraud transactions. Fraud transactions are evolving into various patterns by taking advantage of information technology. To reflect the evolution of fraud transactions, there are many efforts on fraud detection methods and advanced application systems in order to improve the accuracy and ease of fraud detection. As a case of fraud detection, this study aims to provide effective fraud detection methods for auction exception agricultural products in the largest Korean agricultural wholesale market. Auction exception products policy exists to complement auction-based trades in agricultural wholesale market. That is, most trades on agricultural products are performed by auction; however, specific products are assigned as auction exception products when total volumes of products are relatively small, the number of wholesalers is small, or there are difficulties for wholesalers to purchase the products. However, auction exception products policy makes several problems on fairness and transparency of transaction, which requires help of fraud detection. In this study, to generate fraud detection rules, real huge agricultural products trade transaction data from 2008 to 2010 in the market are analyzed, which increase more than 1 million transactions and 1 billion US dollar in transaction volume. Agricultural transaction data has unique characteristics such as frequent changes in supply volumes and turbulent time-dependent changes in price. Since this was the first trial to identify fraud transactions in this domain, there was no training data set for supervised learning. So, fraud detection rules are generated using outlier detection approach. We assume that outlier transactions have more possibility of fraud transactions than normal transactions. The outlier transactions are identified to compare daily average unit price, weekly average unit price, and quarterly average unit price of product items. Also quarterly averages unit price of product items of the specific wholesalers are used to identify outlier transactions. The reliability of generated fraud detection rules are confirmed by domain experts. To determine whether a transaction is fraudulent or not, normal distribution and normalized Z-value concept are applied. That is, a unit price of a transaction is transformed to Z-value to calculate the occurrence probability when we approximate the distribution of unit prices to normal distribution. The modified Z-value of the unit price in the transaction is used rather than using the original Z-value of it. The reason is that in the case of auction exception agricultural products, Z-values are influenced by outlier fraud transactions themselves because the number of wholesalers is small. The modified Z-values are called Self-Eliminated Z-scores because they are calculated excluding the unit price of the specific transaction which is subject to check whether it is fraud transaction or not. To show the usefulness of the proposed approach, a prototype of fraud transaction detection system is developed using Delphi. The system consists of five main menus and related submenus. First functionalities of the system is to import transaction databases. Next important functions are to set up fraud detection parameters. By changing fraud detection parameters, system users can control the number of potential fraud transactions. Execution functions provide fraud detection results which are found based on fraud detection parameters. The potential fraud transactions can be viewed on screen or exported as files. The study is an initial trial to identify fraud transactions in Auction Exception Agricultural Products. There are still many remained research topics of the issue. First, the scope of analysis data was limited due to the availability of data. It is necessary to include more data on transactions, wholesalers, and producers to detect fraud transactions more accurately. Next, we need to extend the scope of fraud transaction detection to fishery products. Also there are many possibilities to apply different data mining techniques for fraud detection. For example, time series approach is a potential technique to apply the problem. Even though outlier transactions are detected based on unit prices of transactions, however it is possible to derive fraud detection rules based on transaction volumes.

Word-of-Mouth Effect for Online Sales of K-Beauty Products: Centered on China SINA Weibo and Meipai (K-Beauty 구전효과가 온라인 매출액에 미치는 영향: 중국 SINA Weibo와 Meipai 중심으로)

  • Liu, Meina;Lim, Gyoo Gun
    • Journal of Intelligence and Information Systems
    • /
    • v.25 no.1
    • /
    • pp.197-218
    • /
    • 2019
  • In addition to economic growth and national income increase, China is also experiencing rapid growth in consumption of cosmetics. About 67% of the total trade volume of Chinese cosmetics is made by e-commerce and especially K-Beauty products, which are Korean cosmetics are very popular. According to previous studies, 80% of consumer goods such as cosmetics are affected by the word of mouth information, searching the product information before purchase. Mostly, consumers acquire information related to cosmetics through comments made by other consumers on SNS such as SINA Weibo and Wechat, and recently they also use information about beauty related video channels. Most of the previous online word-of-mouth researches were mainly focused on media itself such as Facebook, Twitter, and blogs. However, the informational characteristics and the expression forms are also diverse. Typical types are text, picture, and video. This study focused on these types. We analyze the unstructured data of SINA Weibo, the SNS representative platform of China, and Meipai, the video platform, and analyze the impact of K-Beauty brand sales by dividing online word-of-mouth information with quantity and direction information. We analyzed about 330,000 data from Meipai, and 110,000 data from SINA Weibo and analyzed the basic properties of cosmetics. As a result of analysis, the amount of online word-of-mouth information has a positive effect on the sales of cosmetics irrespective of the type of media. However, the online videos showed higher impacts than the pictures and texts. Therefore, it is more effective for companies to carry out advertising and promotional activities in parallel with the existing SNS as well as video related information. It is understood that it is important to generate the frequency of exposure irrespective of media type. The positiveness of the video media was significant but the positiveness of the picture and text media was not significant. Due to the nature of information types, the amount of information in video media is more than that in text-oriented media, and video-related channels are emerging all over the world. In particular, China has made a number of video platforms in recent years and has enjoyed popularity among teenagers and thirties. As a result, existing SNS users are being dispersed to video media. We also analyzed the effect of online type of information on the online cosmetics sales by dividing the product type of cosmetics into basic cosmetics and color cosmetics. As a result, basic cosmetics had a positive effect on the sales according to the number of online videos and it was affected by the negative information of the videos. In the case of basic cosmetics, effects or characteristics do not appear immediately like color cosmetics, so information such as changes after use is often transmitted over a period of time. Therefore, it is important for companies to move more quickly to issues generated from video media. Color cosmetics are largely influenced by negative oral statements and sensitive to picture and text-oriented media. Information such as picture and text has the advantage and disadvantage that the process of making it can be made easier than video. Therefore, complaints and opinions are generally expressed in SNS quickly and immediately. Finally, we analyzed how product diversity affects sales according to online word of mouth information type. As a result of the analysis, it can be confirmed that when a variety of products are introduced in a video channel, they have a positive effect on online cosmetics sales. The significance of this study in the theoretical aspect is that, as in the previous studies, online sales have basically proved that K-Beauty cosmetics are also influenced by word-of-mouth. However this study focused on media types and both media have a positive impact on sales, as in previous studies, but it has been proven that video is more informative and influencing than text, depending on media abundance. In addition, according to the existing research on information direction, it is said that the negative influence has more influence, but in the basic study, the correlation is not significant, but the effect of negation in the case of color cosmetics is large. In the case of temporal fashion products such as color cosmetics, fast oral effect is influenced. In practical terms, it is expected that it will be helpful to use advertising strategies on the sales and advertising strategy of K-Beauty cosmetics in China by distinguishing basic and color cosmetics. In addition, it can be said that it recognized the importance of a video advertising strategy such as YouTube and one-person media. The results of this study can be used as basic data for analyzing the big data in understanding the Chinese cosmetics market and establishing appropriate strategies and marketing utilization of related companies.

Analysis of shopping website visit types and shopping pattern (쇼핑 웹사이트 탐색 유형과 방문 패턴 분석)

  • Choi, Kyungbin;Nam, Kihwan
    • Journal of Intelligence and Information Systems
    • /
    • v.25 no.1
    • /
    • pp.85-107
    • /
    • 2019
  • Online consumers browse products belonging to a particular product line or brand for purchase, or simply leave a wide range of navigation without making purchase. The research on the behavior and purchase of online consumers has been steadily progressed, and related services and applications based on behavior data of consumers have been developed in practice. In recent years, customization strategies and recommendation systems of consumers have been utilized due to the development of big data technology, and attempts are being made to optimize users' shopping experience. However, even in such an attempt, it is very unlikely that online consumers will actually be able to visit the website and switch to the purchase stage. This is because online consumers do not just visit the website to purchase products but use and browse the websites differently according to their shopping motives and purposes. Therefore, it is important to analyze various types of visits as well as visits to purchase, which is important for understanding the behaviors of online consumers. In this study, we explored the clustering analysis of session based on click stream data of e-commerce company in order to explain diversity and complexity of search behavior of online consumers and typified search behavior. For the analysis, we converted data points of more than 8 million pages units into visit units' sessions, resulting in a total of over 500,000 website visit sessions. For each visit session, 12 characteristics such as page view, duration, search diversity, and page type concentration were extracted for clustering analysis. Considering the size of the data set, we performed the analysis using the Mini-Batch K-means algorithm, which has advantages in terms of learning speed and efficiency while maintaining the clustering performance similar to that of the clustering algorithm K-means. The most optimized number of clusters was derived from four, and the differences in session unit characteristics and purchasing rates were identified for each cluster. The online consumer visits the website several times and learns about the product and decides the purchase. In order to analyze the purchasing process over several visits of the online consumer, we constructed the visiting sequence data of the consumer based on the navigation patterns in the web site derived clustering analysis. The visit sequence data includes a series of visiting sequences until one purchase is made, and the items constituting one sequence become cluster labels derived from the foregoing. We have separately established a sequence data for consumers who have made purchases and data on visits for consumers who have only explored products without making purchases during the same period of time. And then sequential pattern mining was applied to extract frequent patterns from each sequence data. The minimum support is set to 10%, and frequent patterns consist of a sequence of cluster labels. While there are common derived patterns in both sequence data, there are also frequent patterns derived only from one side of sequence data. We found that the consumers who made purchases through the comparative analysis of the extracted frequent patterns showed the visiting pattern to decide to purchase the product repeatedly while searching for the specific product. The implication of this study is that we analyze the search type of online consumers by using large - scale click stream data and analyze the patterns of them to explain the behavior of purchasing process with data-driven point. Most studies that typology of online consumers have focused on the characteristics of the type and what factors are key in distinguishing that type. In this study, we carried out an analysis to type the behavior of online consumers, and further analyzed what order the types could be organized into one another and become a series of search patterns. In addition, online retailers will be able to try to improve their purchasing conversion through marketing strategies and recommendations for various types of visit and will be able to evaluate the effect of the strategy through changes in consumers' visit patterns.

The Effect of the Quality of Education Service on the Performance of Education Service through Relationship Commitment in Franchise Beauty Academy: Moderating Effect of Trust Level (프랜차이즈 뷰티 아카데미의 교육서비스 품질이 관계 몰입을 통한 교육 서비스 성과에 미치는 영향 연구: 신뢰 수준의 조절효과)

  • Kim, Chang-Bong;Kim, Hee-Su
    • Asia-Pacific Journal of Business Venturing and Entrepreneurship
    • /
    • v.16 no.3
    • /
    • pp.193-211
    • /
    • 2021
  • Recently, interest in Korean Wave craze and K-beauty, led by K-pop, is increasing. In addition, the popularity and influence of the domestic beauty service industry has increased, and the economic and cultural ripple effects have been continuously expanding. The need to professional manpower training in response to the demand for manpower due to the growing development of domestic beauty services is emphasized, and the number of trainees who are actual consumers of beauty academy is increasing. Therefore, the purpose of our study is to examine the importance of quality factors of educational services to achieve educational purposes in the educational services provided by the Beauty Academy and the relationship between relationship commitment and educational service performance. Furthermore, it is to draw the importance of administrative support services, educational programs as well as educational service provision activities. However, the research for professional manpower training according to the provision of beauty services is insufficient compared to the development speed of the beauty industry. Therefore, at the present time when beauty service education is emphasized, our study will examine the relationship between relationship commitment and educational service performance based on the quality of education service by the students of domestic beauty academy. The measurement variables set for our study are program, instructor quality, tuition, external service, service fairness, relationship commitment, trust level, and educational service performance. The variables were analyzed and derived through the survey, and the following contents were derived from the empirical analysis. First, the quality of education service provided by the beauty academy, such as program, external service, service fairness, relationship commitment and trust level, had a significant effect on relationship commitment. Educational services provided by the institute, such as the systematicity and diversity of educational programs, enabled students to have a uniform relationship commitment. The quality of education service itself is to learn the expertise necessary for providing beauty service from the standpoint of the students and play an organic role in the relationship with the institute. Second, the moderating effect of trust level between academies and students was significant in the quality of education service and the relationship commitment. This means that students will feel higher level of service quality through the practical trust relationship of the students about the educational services provided by the institute. Based on the results of the empirical analysis, the implications of our study are to find ways to improve the students' ability and satisfaction represented by the results of educational services. This is because the quality of education services provided by the institute called Beauty Academy will have a great impact on the career choice of educational facilities and students. The characteristics of consistency, convenience, and knowledge orientation of education itself should be considered comprehensively, and a strong market position should be established through image formation through external service factors, which are external environments of academies.Furthermore, in terms of presenting differentiated strategies with competitors, the educational service quality factors play a significant role in the commitment to the relationship with the students, so the role of relationship marketing will be important for the psychological stability experienced by the students by grasping the demand accompanying the behavior of the students in advance.