반응형 Programming4 Linear Regression with Scikit-Learn or Sklearn What is Scikit-Learn? Scikit-Learn is an open-source machine-learning library for Python that builds upon NumPy , SciPy, and Matplotlib . With scikit-learn , we are able to easily implement machine learning models for regression, clustering, classification, etc. The purpose of this library is to minimize the complexity of mathematical calculation of those machine learning algorithms and instead .. 2023. 7. 24. Pinia - Vue3 State Management What is Pinia? Pinia is an officially recommended state management package for Vue3. Managing the state of an application is a very challenging task as a developer when the project feature gradually increases. With state management libraries such as Pinia or Vuex, we can reduce lots of boilerplate code and just focus on the functionality of the project instead. Implementation In projectdirectory.. 2023. 7. 24. Vue-Router [Vue Js] Table of Contents What is Vue Router? Create Vue JS Application Installing Packages What is Vue Router? Vue router is a recommended and official package used for navigating pages within the Vue JS application. With Vue Router, we can also dynamically update content without refreshing. Create Vue JS Application yarn create vite your-project-name Installing Packages yarn add vue-router Create rout.. 2023. 7. 23. Linear Regression with Python Table of Contents Linear Regression What is Linear Regression? When do we use Linear Regression? Python Packages for Linear Regression Simple Linear Regression Linear Regression What is Linear Regression? Linear regression is a mathematical algorithm which is commonly used for data analysis. In Linear Regression, there are two types of variable ( dependent variable & independent variables ). Moc.. 2023. 7. 23. 이전 1 다음 반응형