What is a good starting point for data mining?

A. Data Visualization
B. Writing a Data dictionary
C. Non Parametric methods
D. creating a relational database
E. machine learning

Answers

Answer 1

Answer:

A is the answer

Explanation:

hope this help

Answer 2

It is a good starting point for data mining and that is A. Data Visualization.

What is the distinction among data mining and data visualization?

Data Mining is a collection of various sports to extract special styles out of the massive facts units wherein facts units may be retrieved from special facts reassets while Data Visualization is a manner of changing numerical facts into graphical pics like significant 3-D images on the way to be used to analyData Mining data.

Data Visualization. Data mining is a manner of extracting beneficial information, styles, and developments from uncooked facts. Data Visualization refers back to the visible illustration of facts with the assist of complete charts, pics, lists, charts, and different visible objects. It comes below facts science.

Read more about the Data Visualization:

https://brainly.com/question/1822923

#SPJ2


Related Questions

Which Internet connection type tends to use shared bandwidth?
Cable
Dial-up
DSL
ISDN

Answers

Answer:

try dial-up

Explanation:

Answer:

dial up

Explanation:

8.7 Code Practice: Question 2 edhesive

Answers

In this exercise we have to have knowledge of computational language in python, so we find the code.

How to define list in Python?

In Python, a list is represented as a sequence of objects separated by commas and enclosed in square brackets [], so an empty list, for example, can be represented by square brackets without any content.

So, to make it simpler, the code can be found below as:

w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]

for x in w:

if(x[0]=='A'):

print(x)

See more about python at brainly.com/question/26104476

Answer:

w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]

for i in range(len(w)):

     if w[i][0] == "A":

               print (w[i])

Explanation:

Elgin is taking notes for his presentation about how people drink too much soda and other sugary drinks, and he finds information about how some cities and states are taxing sugary beverages at a higher rate to encourage people to make healthier choices. In which portion of Elgin's presentation does this information fit?

Answers

Answer:

a solution to the problem

Explanation:

In organizing his text, the move taken by some cities to help their citizens make better choices will fall into the part where he lists or proffers solutions to the excessive intake of soda and sugary drinks by people. Prior to this part, he might begin by explaining what the problem is, and including data that shows the impact of this problem in the society.

When concluding the text, he may now include details of how the government has intervened in remedying the situation.

Which property do you use to align an element horizontally with the left or right edge of its parent element?
A.) position
B.) z-index
C.) float
D.) clear

Answers

A thank me later:) give me hearts

what is the best definition of inflation?

Answers

I mean there’s 2 definitions for it

Inflation is a situation of rising prices in the economy. A more exact definition of inflation is a sustained increase in the general price level in an economy. Inflation means an increase in the cost of living as the price of goods and services rise.


Or inflation can be growing the size (blowing up a balloon)

Based on what you know about the Sort and Find functions, return to the database file to determine the answers to the following questions.

In which year did most people update their contact information?

1988

2010

2011

2012

Answers

Answer:

2010

Explanation:

Most of the people updated their information in the database in the year 2010. The database files have different functions which enable the sorting of data according to the contact information with year wise filter.

Answer:

It’s 2012

Explanation:

how do hand tools,Farm implements and farm equipment differ from one another

Answers

Farm equipment helps the workers with the work they are already doing and farm implements do the work in there own

what is common for all machines​

Answers

Answer:

the question is a bit vague, but all machines exist to serve a purpose, or to do or accomplish a certain task.

They all need a source of power too

Ill give 100 points to whoever gives me the CORRECT answer. I keep getting syntax errors when I do the "add:" part. Can someone walk me through this code?
Part A One of the biggest benefits of writing code inside functions is that we can reuse the code. We simply call it whenever we need it! Let’s take a look at a calculator program that could be rewritten in a more reusable way with functions. Notice that two floats (decimal numbers, but they can also include integers) are inputted by the user, as an operation that the user would like to do. A series of if statements are used to determine what operation the user has chosen, and then, the answer is printed inside a formatted print statement. num1 = float(input("Enter your first number: ")) num2 = float(input("Enter your second number: ")) operation = input("What operation would you like to do? Type add, subtract, multiply, or divide.") if operation == "add": print(num1, "+", num2,"=", num1 + num2) elif operation == "subtract": print(num1, "-", num2,"=", num1 - num2) elif operation == "multiply": print(num1, "*", num2,"=", num1 * num2) elif operation == "divide": print(num1, "/", num2,"=", num1 / num2) else: print("Not a valid operation.") Your job is to rewrite the program using functions. We have already looked at a function that adds two numbers. Using that as a starting point, we could call the add function from within our program in this way: if operation == “add”: result = add(num1, num2) print(num1, "+", num2,"=",result) Now it’s your turn to do the following: Type all of the original code into a new file in REPL.it. Copy the add function from the unit and paste it at the top of your program. Write 3 additional functions: subtract, multiply, and divide. Pay careful attention to the parameters and return statement. Remember to put the three functions at the top of your Python program before your main code. Rewrite the main code so that your functions are called. Part B There are many different ways that a user could tell us that he or she would like to add two numbers in our calculator program. The user could type “add”, “Add”, “ADD”, or “+”, to name a few possibilities. Of cour

Answers

Answer:

sorry but there is not enough information to complete this

Explanation:

working on rewriting my code so i can paste it here! itll be done in a sec

Personal digital assistants are: Group of answer choices artificial intelligence systems that leverage rules or examples to perform a task in a way that mimics applied human expertise. handheld computing devices meant largely for mobile use outside an office setting. systems that provide rewards and usage incentives, typically in exchange for a method that provides a more detailed tracking and recording of customer activity. small chip-based tags that wirelessly emit a unique identifying code for the item that they are attached to. transaction processing systems that capture customer purchases.

Answers

Answer:

its about digital science

Explanation:

Program with variables upload instructions

Answers

Answer:

Here, I made sure to incorporate variables just in case. You could change it to whatever you need.

Explanation:

v1 = "Hello world!"

v2 = "Spam"

v3 = "Eggs"

v4 = "SpamEggs"

v5 = "Spam Eggs"

v6 = "Spam Eggs"

v7 = 7.9

v8 = 20

v9 = 13

v10 = 5

v11 = 13

v12 = 10.8

v13 = 2.7

print(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13)

if you don't want it all on one line you could just print each variable individually :)

Answer:

Print(“Hello World!”)

Print(“Spam”)

Print(“Spam+Eggs”)

Print(“Spam Eggs”)

Print(“Spam Eggs”)

Print(“7_9”)

Print(“2”+”0”)

Print(“1”+”3”)

Print(“5”)

Print(“1”+”3”)

Print(“1”+”0”+”.”+”8”)

Print(“2”+”.”+”7”)

Explanation:

I think i did it lol, not sure

What are the different data types that a variable can be in computer programming?

Answers

Answer:String (or str or text)

Character (or char)

Integer (or int)

Float (or Real)

Boolean (or bool)

Explanation:


Does anyone know this? Can someone please help me? I’ll give brainliest!!

Answers

Answer:

c. HTML tags

Explanation:

Need help with the last one or if I got the others wrong

Answers

i think the answer would be c? if im wrong my apologies.

You are the administrator for a small network. You have approximately 50 users who are served by a single Windows server. You are providing Active Directory, DNS, and DHCP with this server. Your clients all use Windows workstations. Last week, an employee quit. A replacement has been hired and will be starting next Monday. The new user will need to have access to everything the previous user had, including document files held in the Home folder. You need to set up an account for the new user that all the access required. What should you do?

Answers

Answer:

Rename the existing account, and change the name fields to match the new employee.

Explanation:

As you appoint new employer that need all the access to everything that the previous user had, including the documents files held in the Home Folder.

So, As an administrative of the network, you should Rename the existing account, and change the name fields to match the new employee.

the dash area is used for typing and editing the text​

Answers

Explanation:

document area is used for typing and editing the text

I really need help with this. I don’t have that long until I have to turn it in. Please hurry!

Answers

Answer:

a

Explanation:

the answer to the question is A

A school is creating class schedules for its students. The students submit their requested courses and then a program will be designed to find the optimal schedule for all students. The school has determined that finding the absolute best schedule cannot be solved in a reasonable time. Instead they have decided to use a simpler algorithm that produces a good but non-optimal schedule in a more reasonable amount of time. Which principle does this decision best demonstrate

Answers

Answer:

Heuristics

Explanation:

The principle that this kind of decision demonstrate is Heuristics , this is because Heuristics can be used to solve problems when there is no known algorithm to resolve the problem.

Heuristics is a simple algorithm that can provide a good but not optimal solution in the shortest possible time i.e. a shortcut to solutions

Answer:

a

Explanation:

 

1. Describe a recent modern "story" you heard, read, or saw. Explain how that story taught you an important idea about life, family, or society. Be sure to talk about where/how you heard/read about the story in your description.

2. Describe a simulation game you've played recently or have heard about (you may even propose a simulation game idea yourself). Explain why that game fits the definition ofba simulation.

3. in an age of books, films, television, why are games important?

4 think of a game you enjoy. For that game, Describe some of its objectives, rules, operstion, obstacles, and outcomes.

5. What is the main difference between a video game and other types of games (board games, card games, tag, etc.)? What are the similarities?​

Answers

due to recent times there has been injustice. the movement im talking about is blm or alm. theese rough times when socitey cant agree with each other. during theese times its taught me alot about both sides arguments. may 25 2020 "i cant breathe i cant breathe i cant breathe" george floyed was killed may 25 2020 this is when this whole mess started. building being burnt down to crips. people raiding the streets. people getting hurt. the pain some people felt was to much to handle that they dealt with it wrong. here is were alm comes in. alm all lifes matter, mexican lifes matter, black lifes matter, muslims lifes matter, chinnese life matetr white lifes matter unborn lifes matter and much more. blm supporters disagree that all lifes dont matetr untill black lifes do and that alm didnt exist until blm did. theese tough times taught me society needs to stick togther now more then ever and that the skin tone your size your religon dosent matter just how you treat other.

a simulation game. a stimulation game i propose is a simulation game were you live normal life. get a job pay rent and ect. which would teach kids how to work and how to earn money how to pay taxes. this game would be perfect to teach kids the importance of money and that money isnt earned easy. how i imagine it is the game is all about investing buying a better house getting a good job and not going bankrupt. you could even start a buisness which other players can shop in. this game would be the perfect fun and educational game.

in an age of books, films, television, why are games important? games can come in diffrent forms some teach you how to stay safe. some teach you how to run a buisness. some can even teach you how to invest. game can be educational and fun at the same time! games are great for whenever its raining outside and you have some spare time to get cozy and enjoy a game. some games can even bost your mental strength with puzzels and maze's which help your brain stay healthy.

my favorite game, is a board game monopoly. its a game were you invest in properties and NOT go bankrupt! its a fun game with lots of obstacles i enjoy that you play it with lots of people because in real life you will have obstacles people will try and get in your way.

a video game and a board game. the diffrence is video games can be good but can take a bad turn wuick to much is bad for you and like drugs can become addictive and somtimes even dangerous with hackers. a board game is safe because you just play it with your faimly and friends and there is no virus no hackers. there can be cheaters but much safer than video games. the simarlity is that they both can bost your mental stregth and keep your brain active with lots of thinking on the best move.

this took so long so i hope you like it!

Use the drop-down menus
to complete the steps for reducing the mailbox server storage,
1. To access Mailbox Cleanup tools, navigate to_____the tab, and click Cleanup Tools.
2. Once in the Mailbox Cleanup dialog box, there are different options to choose from, such as_____________
or Empty Deleted Items,
3. The____________
function moves items off the server to an online Office 365 folder.

Answers

1. enter back stage view

Answer:

1. File

2. AutoArchive

3. Online Archive

Explanation:

Elige una metodología presentada en la lectura para aplicar la prospectiva (Método Delphi o Construcción de escenarios) y de manera gráfica represente cada metodología y sus fases.

Answers

Answer:

Método Delphi

Explanation:

El método Delphi es un método experto que se ha utilizado ampliamente en la investigación de futuros. En la actualidad, el método Delphi involucra típicamente de 15 a 40 expertos en dos o tres rondas.  

La selección de un panel de expertos que represente de manera integral a las partes interesadas relevantes es un paso crucial en el estudio. La primera ronda, a menudo realizada a través de entrevistas, busca preguntas relevantes y motiva al panel a seguir trabajando. En la siguiente ronda, los panelistas evalúan las declaraciones prospectivas y justifican sus respuestas con diferentes perspectivas. Una característica clave del método es dar respuestas sin nombre, es decir, de forma anónima.

El método Delphi es especialmente adecuado para tratar un tema complejo o que cambia rápidamente, para el cual se pueden identificar expertos o partes interesadas (como ciertos grupos de población) u organizaciones (desarrollo tecnológico, problema social) que estén particularmente familiarizados con él.

El proceso Delphi produce una variedad de perspectivas, hipótesis y argumentos que se someten a pruebas y argumentaciones de expertos abiertos. El proceso busca filtrar las opiniones en opiniones de la comunidad compartidas o disidentes. Ambos resultados son valiosos. Puede haber desacuerdo no solo sobre los argumentos sino también sobre los objetivos, la probabilidad y la conveniencia de las alternativas.

Son los inventarios en proceso que hacen parte de la operación en curso y que se deben tener en cuenta antes de empezar a transformar el material directo.

Answers

Answer:

When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.

Explanation:

When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.

2
Simone builds a simple spinning engine by inserting straws through holes in a plastic cup. She then suspends the cup from a metal pole using string. After Simone pours water into the cup, the water rushes out of the straws in the direction that the straws are pointed and the cup spins, as shown in the picture below.


Which of the following is true about the force acting on the cup and causing it to spin

Answers

Answer: D It is equal in magnitude but opposite in direction to the force pushing the water out of the straws.
Explanation:

Consider the following code segment.
System.out.println("W");
System.out.println("X");
System.out.print("Y");
System.out.print("Z");
What is printed as a result of executing the code segment?

Answers

Answer:

W

X

After that an error would print and error

Explanation:

the last two statements are missing "ln"

A privacy prevention technique by using a unique number while installing a
software to prove the software originality.

-Product Keys
-License agreement
-Holograms
-Software permission​

Answers

Product keys ? I’m not too sure on what ur asking

Answer:

Product keys

Explanation:

9. Draw a flowchart to find the area of rectangle. (A = /B* H)
1 Add File​

Answers

Answer:

See Photo

Explanation:

Area of rectangle = length * width

---- According to problem: A = /B*H

---------Note: Dropped the "/", if needed just change what happens in the diamond

Other Questions
The resolution in the poem happens as soon as A: the rescue ship arrives B: Molly gets a new nickname C: the passengers cheer for Molly D: the long night comes to an end Have you ever heard the story2 Of Mrs. J. J. Brown?3 How she became a legend4 When the ship was going down?5 T'was April back in nineteen-twelve6 When the mighty ship Titanic7 Collided with an iceberg8 And folks began to panic.9 For the ship was clearly sinking,10 And the captain feared the worst!11 "Lifeboats! Lifeboats now!" he cried,12 "Women and children first!"13 A sailor helped the woman down14 Into the little boat.15 Her hair was red and curly,16 And she wore a long fur coat.17 Twenty-six were huddled there,18 Plus one man from the crew.19 "Howdy folks, I'm Molly Brown!20 Pleased to meet all you!"21 "Take my coat, whoever's cold,22 And let me make this clear:23 I don't plan on drowning!24 Now let's get our of here!"25 The icy Arctic water26 Tossed the lifeboat up and down.27 The passengers cried out in fear,28 Except for Molly Brown.29 All night long she talked and sang,30 And even grabbed an oar.31 She rowed that boat until her hands32 Were raw and chapped and sore.33 She talked about her children34 And Leadville Johnny Brown,35 And moving to a mansion36 From the poorer side of town.37 She talked of mining silver39 'Neath the Colorado sky.39 Her voice became their comfort;40 Her words their battle cry.41 "Don't lose faith! Don't give up!42 Our courage must not shrink!43 Keep your spirits high, my friends,44 This raft ain't gonna sink!"45 And when the night was over,46 And the rescue ship arrived,47 A cheer went up for Molly Brown!48 With her, they had survived.49 For not to keep a-trying,50 To her was just unthinkable.51 And to this day, that's why she's known as52 MOLLY, THE UNSINKABLE! Can someone please help me? thank you. Read Philippians 2:6-11. What are three things that this poem tells us about Jesus?(Religion Homework) The fossil remains of an ancient plant are present in a rock as shown below. the rock is most likely: igneous metamorphic crystallized sedimentary Tags uncle gave him 25 baseball cards to start his collection. Every week, Tag buys 5 more cards. Write an equation that represents the total number of baseball cards Tag has in his collection. Let x represent the number of weeks Tag bought cards, and let y represent the total nimber of cards Tag has Please someone write a poem about fireworks I'd really appreciate it Which aspect of an informative essay is supported by evidence? Describe the social security act Please solve for the maximum value f(x) = -2x^2 - 12x - 16 Please help me fill out the numbers in the box and help me answer the question Describe and explain how blood in the right ventricle travels to the left atrium pls give me a awnser even if its just a sentence I need helppppppppp this is due ina hour i am doing bad in school i dont understand it i am feeling depressed wish someone would just do my work for me sigh What is the volume of the rectangular prism? You roll a number cube two times in a row. What is the probability of rolling a 3 the first time and an even number the second time? The relationship between the number of slices of pizza eaten and the number of caloriesconsumed is linear. If you eat 2 slices of pizza and a salad, you consume 455 calories. If you eat5 slices of pizza and a salad, you consume 1,025 calories. Can you help me please! Hurry its due soon A rectangle is a parallelogram. What is true of the diagonals of a rectanglethat is not true of the diagonals of a parallelogram, in general? Which government act BEST completes this diagram? A bag contains 6 red marbles, 4 black marbles, and blue 5 blue marbles. A marble is picked without looking into the bag. Determin the probobility of picking out a blue marble