similar to: Getting htmlParse to work with Hebrew? (on windows)

Displaying 20 results from an estimated 4000 matches similar to: "Getting htmlParse to work with Hebrew? (on windows)"

2013 Feb 21
4
Getting htmlParse to work with Hebrew? (on windows)
Hello dear R-help mailing list. Looks like the same issue in Russian: library(RCurl) library(XML) u = " http://www.cian.ru/cat.php?deal_type=2&obl_id=1&room1=1" a = getURL(u) a # Here - the Russian is fine. a2 <- htmlParse(a) a2 # Here it is a mess... None of these seem to fix it: htmlParse(a, encoding = "windows-1251") htmlParse(a, encoding =
2011 Oct 06
1
anova.rq {quantreg) - Why do different level of nesting changes the P values?!
Hello dear R help members. I am trying to understand the anova.rq, and I am finding something which I can not explain (is it a bug?!): The example is for when we have 3 nested models. I run the anova once on the two models, and again on the three models. I expect that the p.value for the comparison of model 1 and model 2 would remain the same, whether or not I add a third model to be compared
2011 Jan 25
3
Failing to install {rggobi} on win-7 R 2.12.0
Greetings all, I am failing to install the package rggobi on windows 7 with R 2.12.0. On R 2.11.1, the package was installed fine. I asked for help on the rggobi google group 4 days ago, and didn't receive any help, so I was wondering if someone here might have a suggestion. Here are the details: ----------------------------------- I am having a similar (bot not exact) problem as Tom had
2010 Mar 18
5
language!!!
Hi, there´s something that really bothers me about R and after hours and hours of internet research, I´m still stuck with the same problem: I installed R and it is in Spanish, as the system on my work. I would really like it in English and there seems to be no way to change that!?! I´m doing an abroad internship, so my Spanish is far from perfect and my tutorial is in English. Is there any
2010 Mar 18
1
How to read.table with “Hebrew” column names (in R)?
(I am reposting this question after a few months without a solution...) Hi all, I am trying to read a .txt file, with Hebrew column names, but without success. I uploaded an example file to: http://www.talgalili.com/files/aa.txt And tried the command: read.table("http://www.talgalili.com/files/aa.txt", header = T, sep = "\t") This returns me with: X.....ª X...ª......
2010 Sep 28
0
Bug report: Disappearing text when using a long "expression" in ylab
Hello all, After help form Barry Rowlingson I am reporting my first bug to R-devel. Please be kind if I did something wrong in the reporting - and many thanks for anyone who is reading this e-mail. Example of the bug: tt <- expression(paste("test loooooooooooooooooooooooooooooooooooooooooooooo(% of 360" *degree,")")) plot(1,xlab=tt,ylab=tt,main=tt) #Now please resize
2013 Mar 20
1
htmlParse (from XML library) working sporadically in the same code
I am using htmlParse from XML library on a paricular website. Sometimes code fails, sometimes it works, most of the time id doesn't and i cannot see why. The file i am trying to parse is  http://www.londonstockexchange.com/exchange/prices-and-markets/international-markets/indices/home/sp-500.html?page=0 Sometimes the following code works n<-readHTMLTable(htmlParse(url)) But most of the
2012 May 21
1
htmlParse Error
I am trying to parse a webpage using the htmlParse command in XML package as follows: library(XML) u = "http://en.wikipedia.org/wiki/World_population" doc = htmlParse(u) I get the following error: Error in htmlParse(u) : error in creating parser for http://en.wikipedia.org/wiki/World_population I am using a R 2.13.1 (32 bit version) on a 64 bit Windows. (I tried installing it in
2011 Sep 05
2
htmlParse hangs or crashes
Dear colleagues, each time I use htmlParse, R crashes or hangs. The url I'd like to parse is included below as is the results of a series of basic commands that describe what I'm experiencing. The results of sessionInfo() are attached at the bottom of the message. The thing is, htmlTreeParse appears to work just fine, although it doesn't appear to contain the information I need (the
2009 Jun 30
1
How to pass parameters to htmlParse Bank of Canada html pages
To get USDCAD rates from Bank of Canada, we first go url <- "http://banqueducanada.ca/en/rates/exchange-avg.html" select 12 months for Rates for the past and click "Get Rates" button. Then the page moves to address <- "http://banqueducanada.ca/cgi-bin/famecgi_fdps" and the rates show in the html page. htmlParse() can read the html document but
2006 Feb 04
1
BIDI (Hebrew) Support
Hello, I've looked for a BIDI HOW-TO, but did not find any. I use wine-0.9.5, and run IE using ies4linux. It works great including Hebrew showing Hebrew text correctly. The problem is that I could not write any Hebrew character... Whenever I type a character I get "?". So I've looked at wine-bidi issues, and found that I need to compile wine with icu library. I did! using
2010 Dec 07
1
Encoding problem - I fails to read Hebrew text from online
Hello all, # I am trying to read the text in this URL: u <- http://google.com/complete/search?output=toolbar&q=%d7%a9%d7%9c%d7%95%d7%9d # By using this command: readLines(u) And no matter what variation I tried, I keep getting this output: [1] "<?xml version=\"1.0\"?><toplevel><CompleteSuggestion><suggestion
2010 Oct 06
1
How to read a matrix with Hebrew row names?
Hello all, I am trying to read a matrix with row names in Hebrew, but I am unable to read the Hebrew words, e.g.: להחזיק -1.544317e-02 -2.398621e-01 9.854603e-01 1.111321e+00 שאחרי -1.544317e-02 -2.398621e-01 7.421092e-01 3.439690e-01 היישוב -1.544317e-02 -2.398621e-01 1.050982e+00 1.125970e+00 בתים -1.544317e-02
2008 Sep 02
2
MS Office in Wine: Hebrew backwards
I must install MS Office in Wine on Ubuntu Linux. It installs fine, but the Hebrew is backwards. Googling the problem led me to this video, which illustrates the problem: http://www.youtube.com/watch?v=19I2qaykE6w Does anyone know how to fix this? I am on a full UTF-8 Hebrew locale, if that is relevant. I installed MS Office 2003 in English on Kubuntu 8.04. Thanks in advance. $ wine --version
2007 Sep 25
1
hebrew characters
I'm trying to use rsync (version 2.6.9) to back up some files. However, a few of them contain Hebrew characters. While I can back them up, the filenames come through scrambled (I don't have Hebrew characters anymore). I've tried the -8 switch, but that didn't work. Any suggestions? Background: The files are created on Windows and saved on a samba share (v3.0.24). I can copy
2012 Sep 04
0
get only little part of html with htmlParse
Here is my code. there are three method to get text to be parded by htmlParse function. 1.file on mycomputer options(encoding="gbk") library(XML) xmltext1 <- htmlParse("/home/tiger/Desktop/27174.htm" ) #/home/tiger/Desktop/27174.htm is the file of http://www.jb51.net/article/27174.htm downloaded on my computer. 2.url options(encoding="gbk")
2002 Feb 17
1
Seeing Hebrew Fonts
Hello, I am using Wine (rel 26 12 2001) on a Red Hat Distribution (7.1). I would like to see some Hebrew fonts. I have some True Type fonts installed on my PC . How could I proceed ? Thanks
2010 Jan 01
4
How to use read.table with Hebrew column names ?
Hello dear R help group, I am trying to read a .txt file, with Hebrew column names, while keeping the column names looking well in R - but without success. I uploaded an example file to: http://www.talgalili.com/files/aa.txt And am trying the command: read.table("http://www.talgalili.com/files/aa.txt", header = T, sep = "\t") This returns me with: X.....ª X...ª......
2012 Sep 14
0
htmlParse pop ups over web pages
Hello All, I am trying to write a routine that loops over some links and parses those links using htmlParse.  The problem is that one of the links may display a pop up window on top of that link's web page.  If there is a pop up, the routine bombs and I get an error message that the url doesn't exist. Does the XML package (or perhaps another package) provide a way to deal with this
2002 Mar 05
3
UTF-8 & Hebrew
Sorry if this is offtopic. My Win32 comment editor uses a routine of my own to read comments directly from OGG files but uses vorbiscomment.exe to write comments. I've implemented a UTF-8 function which I found on the internet to decode UTF-8. It appears to be working fine for most European characters, however, I have a Russian user using WinXP who is entering Hebrew characters such as