yjlee168 ★★★ ![]() ![]() Kaohsiung, Taiwan, 2015-08-27 01:13 (3529 d 13:58 ago) Posting: # 15346 Views: 9,778 |
|
Dear all, I just put the new release of bear v2.6.6 for windows OS to download site. You can install it from "local zip file." I will add files for other platforms later. Some minor fixes include
— All the best, -- Yung-jin Lee bear v2.9.2:- created by Hsin-ya Lee & Yung-jin Lee Kaohsiung, Taiwan https://www.pkpd168.com/bear Download link (updated) -> here |
BE-proff ● 2015-08-31 11:40 (3525 d 03:31 ago) @ yjlee168 Posting: # 15367 Views: 8,088 |
|
Dear yjlee168, Certainly my question may seem to be stupid but nevertheless I'd like to ask it ![]() Why did you decide to use R to develop Bear while there are other areas like MS Excel, Visual Studio with different sets of languages, etc.? ![]() |
yjlee168 ★★★ ![]() ![]() Kaohsiung, Taiwan, 2015-08-31 14:32 (3525 d 00:39 ago) @ BE-proff Posting: # 15368 Views: 8,186 |
|
Dear BE-proff, To be honest, your question is not stupid at all and very sorry to confuse you a little bit. R is a great and free software environment for statistical computing and graphics. That should explain why we choose R. I guess your question is why bear cannot support various languages like commercial computer program do. It is because there is only one person (i.e., me) to maintain it. Unlike companies of commercial computer program, I cannot provide the support of various languages for now (maybe forever). But don't get disappointed so quickly. Since all R packages are under GPL, users can download all source codes and change the language they prefer to fit their need before using it. It should be do-able. R itself does provide the support for various languages, but it is just user's interface. ❝ Why did you decide to use R to develop Bear while there are other areas like MS Excel, Visual Studio with different sets of languages, etc.? — All the best, -- Yung-jin Lee bear v2.9.2:- created by Hsin-ya Lee & Yung-jin Lee Kaohsiung, Taiwan https://www.pkpd168.com/bear Download link (updated) -> here |
yjlee168 ★★★ ![]() ![]() Kaohsiung, Taiwan, 2015-09-08 13:38 (3517 d 01:33 ago) @ BE-proff Posting: # 15385 Views: 7,664 |
|
Dear BE-proff, I have been thinking what you talked about if bear can support various languages. I did a little test and I got txt17<-"這是中文\n" Looks fine. I don't know if these will cause any compile error or not. If it is fine, then I will start adding some languages support first. Ps. The display of Spanish looks like not exactly same as input text. — All the best, -- Yung-jin Lee bear v2.9.2:- created by Hsin-ya Lee & Yung-jin Lee Kaohsiung, Taiwan https://www.pkpd168.com/bear Download link (updated) -> here |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2015-09-08 17:02 (3516 d 22:09 ago) @ yjlee168 Posting: # 15386 Views: 7,619 |
|
Hi Yung-jin, ❝ ❝ ❝ ❝ Ps. The display of Spanish looks like not exactly same as input text. On my system (Win7 64bit, German locale, R 3.2.2, font in /etc/Rconsole : Lucida Console) it’s fine:
As a last resort one can always fall back to Unicode (see his old document). Try:
Whether or not a character can be displayed depends on the locale, the chosen font (and even on its version). Try:
Combining characters should be avoided if ever possible since they are available only in more recent versions of fonts. Try:
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
yjlee168 ★★★ ![]() ![]() Kaohsiung, Taiwan, 2015-09-08 20:48 (3516 d 18:23 ago) @ Helmut Posting: # 15387 Views: 7,612 |
|
Dear Helmut, Nice to hear from you again ![]() ❝ On my system (Win7 64bit, German locale, R 3.2.2, font in ❝
No, not fine for me (Win7 x64). Still the same, even though I set the same font as yours (Lucida Console). But it is fine on Linux-pc x86 (US locale) and x64 (Taiwan locale), as well as iMac OS X (snow leopard, v10.8). You are right. It sounds like the problem of locale setting. Users have their own locale setting. I should get used to it on my pc. ❝
❝ cat(utf8) This one is fine without changing font. ❝
❝ cat(med.symbol) Whiches gives a prettyx̃ on Vista+, but x~ on ≤XP… This one is not fine either. See nothing (blank) on screen. However, on Linux-pc x86/x64, it looks like XP's. Forget to test this one on iMac OS X. — All the best, -- Yung-jin Lee bear v2.9.2:- created by Hsin-ya Lee & Yung-jin Lee Kaohsiung, Taiwan https://www.pkpd168.com/bear Download link (updated) -> here |
yjlee168 ★★★ ![]() ![]() Kaohsiung, Taiwan, 2015-09-08 21:51 (3516 d 17:19 ago) @ yjlee168 Posting: # 15389 Views: 7,641 |
|
Dear all, No, I got compiled error message as Error in parse(outFile) : invalid multibyte character in parser at line 40 with Chinese (BIG-5 code), Greek, Japanese, and Russian. Helmut just pointed an R document link and it mentioned that ... Localization of messages- As from 2005-01-25, R uses GNU gettext where available. So far only the start-up message is marked for translation, as a proof-of-concept: there are several thousand C-level messages that could potentially be translated. The same mechanism could be applied to R packages, provided they call dgettext with a PACKAGE specific to the package, and install their own PACKAGE.mo files, say via an inst/po directory. The splines package was been converted to show how this might be done: it only has one error message... I will see what I can do about it.❝ ...I don't know if these will cause any compile error or not.... — All the best, -- Yung-jin Lee bear v2.9.2:- created by Hsin-ya Lee & Yung-jin Lee Kaohsiung, Taiwan https://www.pkpd168.com/bear Download link (updated) -> here |