2022
DOI: 10.1155/2022/6711470
|View full text |Cite
|
Sign up to set email alerts
|

Financial Data Analysis and Application Based on Big Data Mining Technology

Abstract: We provide a brief overview of the connotation and characteristics of data mining technology in the era of big data, analyze the feasibility of data mining technology in business management from the economic and technical perspectives, and propose specific application suggestions according to the content and requirements of business management. This paper describes in detail the principles and steps of using the weighted plain Bayesian algorithm and the decision tree algorithm to analyze students’ performance;… Show more

Help me understand this report

Search citation statements

Order By: Relevance

Paper Sections

Select...
2

Citation Types

0
3
0

Year Published

2023
2023
2024
2024

Publication Types

Select...
2
2

Relationship

0
4

Authors

Journals

citations
Cited by 4 publications
(3 citation statements)
references
References 25 publications
(25 reference statements)
0
3
0
Order By: Relevance
“…Finding directions, seizing market chances, and maximizing profits are all made possible with the help of data mining [7]. The financial sector requires extensive data collection and processing due to its complexity [8]. Due to the complexity of these transactions, information asymmetry, and the volume of people conducting related business on a daily basis, Financial services are provided by most financial banks and financial institutions like loan, personal deposit, credit card, investment business.…”
Section: Introductionmentioning
confidence: 99%
“…Finding directions, seizing market chances, and maximizing profits are all made possible with the help of data mining [7]. The financial sector requires extensive data collection and processing due to its complexity [8]. Due to the complexity of these transactions, information asymmetry, and the volume of people conducting related business on a daily basis, Financial services are provided by most financial banks and financial institutions like loan, personal deposit, credit card, investment business.…”
Section: Introductionmentioning
confidence: 99%
“…[2] In view of this, this paper believes that enterprises should re-examine the changes and innovations brought about by digital transformation and upgrading, adhere to innovation-driven, actively explore effective ways to deal with massive financial data information under big data technology, and promote the transformation of enterprise financial management mode to digitalization and intelligence. [3] The visual analysis system of enterprise financial data based on data mining technology can organically combine data mining technology with financial analysis methods. Through data collection, data cleaning, data storage, model construction, result expression and other steps, it can help enterprise users to obtain enterprise financial status and operation status in a timely, accurate and intuitive manner, and then make scientific and reasonable management development decisions, and make useful attempts to improve the effectiveness of enterprise internal management.…”
Section: Introductionmentioning
confidence: 99%
“…import pandas as pd from sklearn.linear_model import LogisticRegression X = df.iloc[:,[1,2,3]]. values y = df.iloc[:, 0].values X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.20, random_state = 0) sc_X = StandardScaler() X_train = sc_X.fit_transform(X_train) X_test = sc_X.transform(X_test) classifier = LogisticRegression(random_state = 0) classifier.fit(X_train, y_train)…”
mentioning
confidence: 99%