Question

Do writings by individual authors have statistical signatures? They certainly do, and while such signatures say...

Do writings by individual authors have statistical signatures? They certainly do, and while such signatures say little about an author's art, they can say something about literary styles of an era, and can even help clarify historical controversies about authorship. Statistical studies, for example, have shown that the Illiad and the Odyssey were not written by a single individual.

For this assignment you are to create a program that analyzes text files -- novels perhaps, or newspaper articles -- and produces two statistics about these texts: word size frequency, and average sentence length.

In particular, you should write a two class application that produces such statistics. Your classes should be called WordMap.java, and WordMapDriver.java. The driver class should read in the name of a file that holds a text, and then provide an analysis for that text. Here is a sample:


> java WordMapDriver
enter name of a file
Analyzed text: /Users/moll/CS121/AliceInWonderland.txt
words of length 1: 7.257%
words of length 2: 14.921%
words of length 3: 24.073%
words of length 4: 20.847%
words of length 5: 12.769%
words of length 6: 7.374%
words of length 7: 6.082%
words of length 8: 3.012%
words of length 9: 1.812%
words of length 10: 0.820%
words of length 11: 0.501%
words of length 12: 0.236%
words of length 13: 0.134%
words of length 14: 0.083%
words of length 15 or larger: 0.001%
average sentence length: 16.917


Your job, then, is to code a solution to this problem, and provide these two statistics - word size percentage, and average sentence length (thus in the example given, 7.257 percent of the words are of length 1, 14.921 percent of the words are of length 2, and so forth, and the average sentence length is 16.917 words).

You can obtain interesting sample texts by, for example, visiting the Gutenberg foundation website (Gutenberg.org), and downloading books from there.

Tips

You should read external files by extending the Echo class from Chapter 10.

An easy and acceptable way to calculate the average length of sentences: count the number of words, count the number of end-of-sentence markers -- !,.,?, then divide the first by the second. Thus if a text has 21 words and 2 periods and a question mark, then its average sentence length is 7.

Show percentages using printf, as described in Chapter 5 of the text. Precision: as above in the example, 3 places to right of decimal point. To include a % symbol in a format string, include two percent symbols. The control character \n generates a carriage return. This statement:

System.out.printf("%4.2f%%\n",40.23);


prints

40.23%


and then advances to the next line.


Additional Requirements

You must use a try/catch harness for your WordMapDriver code.

You must use The String method split to extract the individual words on each line of the text you are examining. In addition to the space symbol, use these characters as delimiters: ,.!?;:

You must comment your classes: add a one line comment for every method and for every instance variable. This comment should clearly state the role of that Java constituent.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer: Note: The class Echo is not given. So I implemented the WordMap class without using Echo class. //Import files importwordLength[kk] 0; //Define method to read from file public void readFile () //Try try //Scanner Scanner mapSan-new Scanner (npxe.printStackTrace () //Define method to print data public void printStatisticsInfo () System.out.println (Analysed text:f//WordMapDriver class public class WordMapDriver //main public static void main (Stringl args) String filename; Scanner tpSant wont indeed! said ATice, in a great hurry to change the subject of conversation. Are you--are y Sample output: sh-4.3s javwords of length 6: 7.3334 words of length 7: 6.667% words of length 8: 4.667% words of length 9: 2.667% words of length 10: 0

Copyable code:

//Import files

import java.io.*;

import java.lang.*;

import java.util.*;

//WordMap class

class WordMap

{

//Declare

int sentenceMarkerCount=0;

int wordCount=0;

int[] wordLength;

String filename;

//Define constructor.

public WordMap(String ip)

{

filename=ip;

wordLength=new int[15];

//For loop

for(int kk=0;kk<15;kk++)

wordLength[kk]=0;

}

//Define method to read from file

public void readFile()

{

//Try

try

{

//Scanner

Scanner mapSan=new Scanner(new File(filename));

String line;

//Loop

while(mapSan.hasNextLine())

{

line=mapSan.nextLine();

int tpk=0;

//Loop to find sentence end markers

for(int kk=0;kk<line.length();kk++)

{

char c=line.charAt(kk);

if(c=='.'||c=='!'||c=='?')

tpk++;

}

sentenceMarkerCount+=tpk;

String[] tp=line.split(" ");

wordCount +=tp.length;

//Loop

for(int kk=0;kk<tp.length;kk++)

{

for(int aa=1;aa<15;aa++)

{

if(tp[kk].length()==aa)

wordLength[aa-1]++;

}

if(tp[kk].length()>=15)

wordLength[14]++;

}

}

//Close

mapSan.close();

}

//Catch

catch(Exception pxe)

{

    pxe.printStackTrace();

}

}

//Define method to print data

public void printStatisticsInfo()

{

System.out.println("Analysed text:"+filename);

//Loop

for(int kk=0;kk<14;kk++)

{

System.out.printf("words of length " + (kk+1) + ": %5.3f%%\n",((float)wordLength[kk]/wordCount)*100);

}

System.out.printf("words of length 15 or larger : %5.3f%%\n",((float)wordLength[14]/wordCount)*100);

System.out.printf("Average sentence-length : %5.3f%%\n",((float)wordCount/sentenceMarkerCount));

}

}

//WordMapDriver class

public class WordMapDriver

{

//main

public static void main(String[] args)

{

String filename;

Scanner tpSan=new Scanner(System.in);

System.out.print("Enter name of a file:");

filename=tpSan.nextLine();

WordMap wm=new WordMap(filename);

wm.readFile();

wm.printStatisticsInfo();

}

}

Add a comment
Know the answer?
Add Answer to:
Do writings by individual authors have statistical signatures? They certainly do, and while such signatures say...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • This is a java homework for my java class. Write a program to perform statistical analysis...

    This is a java homework for my java class. Write a program to perform statistical analysis of scores for a class of students.The class may have up to 40 students.There are five quizzes during the term. Each student is identified by a four-digit student ID number. The program is to print the student scores and calculate and print the statistics for each quiz. The output is in the same order as the input; no sorting is needed. The input is...

  • have to create five different functions above and call it in the main fucntion. Project Exam...

    have to create five different functions above and call it in the main fucntion. Project Exam Statistics A CIS 22A class has two midterm exams with a score between 0 and 100 each. Fractional scores, such as 88.3 are not allowed. The students' ids and midterm exam scores are stored in a text file as shown below // id exam1 exam2 DH232 89 92 Write a program that reads data from an input file named exams.txt, calculates the average of...

  • please put the comment each line, make sure i will have output too. write a program,...

    please put the comment each line, make sure i will have output too. write a program, Summarize (Summarize.java), containing the main() method, that first writes 10,000 random positive double type numbers, to the full accuracy of the number (15/16 decimal places), to a text file named DataValues.txt, one number per line. The program must then close that file, and reopen it for reading. Read back the values from the file and write the following information to a file named Summary.txt:...

  • Overview: The goal of this assignment is to implement a simple spell checker using a hash...

    Overview: The goal of this assignment is to implement a simple spell checker using a hash table. You will be given the basic guidelines for your implementation, but other than that you are free to determine and implement the exact classes and methods that you might need. Your spell-checker will be reading from two input files. The first file is a dictionary containing one word per line. The program should read the dictionary and insert the words into a hash...

  • Topics: About Java What is a compiler, and what does it do? Characteristics of the languageStrongly...

    Topics: About Java What is a compiler, and what does it do? Characteristics of the languageStrongly typed and statically typed Everything has a data type & data types must be declared Case sensitive Object oriented System.out.print() vs. System.out.println() How to use the Scanner class to obtain user input Data typesWhat are they? Know the basic types like: int, double, boolean, String, etc. Variables What is a variable? Declarations Initialization Assignment Constants Reserved words like: What is a reserved word? Examples:...

  • Java2 Screenshot of the output required Put some comment This is the mailing text file for...

    Java2 Screenshot of the output required Put some comment This is the mailing text file for the assignment ..Il AT&T令 12:28 AM Back Complete and Submit Lab 2C Detail Submission Grade Complete and Submit Lab 2C Due: Mar 1, 2019 at 11:59 PM In class you learned how to read text from a file using the Scanner class and write text to a file using the Formatter class. This lab allows you to apply the skills you learned about files...

  • This project is meant to give you experience writing linked lists and graphs. As such, you...

    This project is meant to give you experience writing linked lists and graphs. As such, you are not permitted to use arrays or any data structure library. You may, however, make use of code presented in class and posted to Blackboard. Objective Your goal for this project is to take a block of text, analyze it, and produce random sentences in the style of the original text. For example, your program, given Wizard of Oz, might produce: how quite lion...

  • The following code uses a Scanner object to read a text file called dogYears.txt. Notice that...

    The following code uses a Scanner object to read a text file called dogYears.txt. Notice that each line of this file contains a dog's name followed by an age. The program then outputs this data to the console. The output looks like this: Tippy 2 Rex 7 Desdemona 5 1. Your task is to use the Scanner methods that will initialize the variables name1, name2, name3, age1, age2, age3 so that the execution of the three println statements below will...

  • Please try to write the code with Project 1,2 and 3 in mind. And use java language, thank you very much. Create an Edit Menu in your GUI Add a second menu to the GUI called Edit which will have one me...

    Please try to write the code with Project 1,2 and 3 in mind. And use java language, thank you very much. Create an Edit Menu in your GUI Add a second menu to the GUI called Edit which will have one menu item called Search. Clicking on search should prompt the user using a JOptionPane input dialog to enter a car make. The GUI should then display only cars of that make. You will need to write a second menu...

  • 1-Suppose you write an application in which one class contains code that keeps track of the...

    1-Suppose you write an application in which one class contains code that keeps track of the state of a board game, a separate class sets up a GUI to display the board, and a CSS is used to control the stylistic details of the GUI (for example, the color of the board.) This is an example of a.Duck Typing b.Separation of Concerns c.Functional Programming d.Polymorphism e.Enumerated Values 2-JUnit assertions should be designed so that they a.Fail (ie, are false) if...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT