I've recently discovered RapidMiner, and I'm very excited about it's capabilities. However I'm still unsure if the program can help me with my specific needs. I want the program to scrape xpath matches from an URL list I've generated with another program. (it has more options then the 'crawl web' operator in RapidMiner)

I've seen the following tutorials from Neil Mcguigan: http://vancouverdata.blogspot.com/2011/04/web-scraping-rapidminer-xpath-web.html. But the websites I try to scrape have thousands of pages, and I don't want to store them all on my pc. And the web crawler simply lacks critical features so I'm unable to use it for my purposes. Is there a way I can just make it read the URLS, and scrape the xpath's from each of those URLS?

I've also looked at other tools for extracting html from pages, but I've been unable to figure out how they work (or even install) since I'm not a programmer. Rapidminer on the other hand is easy to install, the operator descriptions make sense but I've been unable to connect them in the right order.

I need to have some input to keep the motivation going. I would like to know what operator I could use instead of 'process documents from files.' I've looked at 'process documents from web' but it doesn't have an input, and it still needs to crawl. Any help is much appreciated.

Looking forward to your replies.

link|improve this question
feedback

2 Answers

I have quite the same problem than you and maybe these posts from RapidMiner's forum will help you a little : http://rapid-i.com/rapidforum/index.php/topic,2753.0.html and http://rapid-i.com/rapidforum/index.php?topic=3851.0.html

See ya ;)

link|improve this answer
feedback

How is your data stored? If it is in CSV, Excel, or a database, then you can just import and scrape using Import CSV, Import Excel, etc. This will let you select the right column and exclude the rest.

It sounds as if your data extraction is taking place in another program - can you share what the other application is? Otherwise people may be left without relevant information about your data-gathering process. For example, if your other web-scraping application can dump your output to a spreadsheet or database, it will make it easier to process.

Knowing RapidMiner, it probably can indeed perform what you need it to - it just takes the right finesse. The issue you may be having is that you aren't pre-processing your initial data enough before trying to save it.

The final output can be as simple as a URL list, or an entire database entry. This process dumps to Excel. Try using this process:

1. 'Get Page' - this is your point of origin. You can use 'Crawl Web' or one of the other features if that works for you.
2a. 'Cut Document' - using XPath parameters, you can pull out exactly what you want.
2b. Double-click on 'Cut Document' and set up your sub-process there (like the Vancouver Data blog)
(optionaL steps here)
3. 'Document to Data' - tranforms documents to data.
4. 'Export to Excel' - you can then select to save just your URL output, and discard the rest.

This gives you a Excel list that you can then use as you wish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.