Questions tagged [latin]

149 questions
0
votes
1 answer

Special characters included string can not convert to the actual characters

expected_string : Hello "Ôppőrtunĩty" 01 properties_file_string : Hello "Ôpp\u0151rtun\u0129ty" 01 default charset = windows-1252 Above string is getting using properties file. So when it paste to the properties file it is displaying as…
0
votes
2 answers

Replace 'alpha' and 'beta' to Greek characters in panda index names

I'm using sns.clustermap to plot a dataframe from a panda dataframe. I want to replace all the instances of "alpha" and "beta" to the lowercase latin letters, but I can't do it nomatter how I try. I tried to code it in Latex. Here is an example…
user1748101
  • 275
  • 1
  • 3
  • 9
0
votes
1 answer

POS tagger for Latin Python

Any idea if there are any more POS taggers for Latin apart from CLTK available for Python or any other language? I have tried the CLTK POS taggers but they are not giving me very accurate results for my corpus
gannina
  • 173
  • 1
  • 8
0
votes
1 answer

Unwanted conversion of latin letters in sql functions

I'm using Ms-Sql DB and I have a field that is saved in the DB as nvarchar type. I use linq to sql in the following way: var names = NamesTable.where(n=>n.name.Contains("acções")); this query returns names containing: acçoes/ accoes or any other…
Pawpaw
  • 1
0
votes
0 answers

How to read text file into pandas and convert utf8 chars to string / latin?

I am writing a script which parses an apache log file into a pandas table. Now I recognized that in the log file the text is sometimes like this / with utf8 values in it: Bern,%20Bahnhof For example one log file text line: IP - - timestamp "GET…
timo
  • 21
  • 2
0
votes
1 answer

Phonetic Speech Recognition

I'm trying to get Latin Speech-Recognition for which I'll need, . . . not word-recognition but . . . phonetic-vowel-and-consonant-recognition (since Latin has only 40 sounds, but over 40,000 words x 60 avg. endings = 2.5 MILLION word-forms). The…
rudminda
  • 137
  • 12
0
votes
1 answer

reusing variables in pig

i have some memory issues in pig. So this is my code. a = load 'some file'; b = load 'file2'; cond = load 'cond file'; c = union a,b; cc = join c by $0, cond by $0; dd = foreach cc generate $0,$1; reduce = foreach(group dd generate by random())…
aceminer
  • 4,089
  • 9
  • 56
  • 104
0
votes
1 answer

Translating strings to another language using bash

I have created a script that gets names and surnames of people both in latin and greek characters. My challenge was to translate all greek characters to latin ones in order to create more possible Facebook links to their profiles, but use only bash…
Leajian
  • 129
  • 9
0
votes
2 answers

how to type `` in latin american keyboard

I can't get it done in my Latin American keyboard .... I need it often in Node.JS ... while I'm coding. ... specially some strings. .... otherwise it doesn't bring the results. I need using simple quotes: '' ... .I would appreciate any help .. .…
Felipe
  • 101
  • 10
0
votes
0 answers

R doesn't recognize Latin7 characters

I have really strange problem. I am using Lithuanian keyboard, but R doesn't recognize letters such as į, š, č. For example when I write: žodis <- "žibutė" in R console I see þodis <- "þibutë". I have R in several computers, all work fine except…
neringab
  • 613
  • 1
  • 7
  • 16
0
votes
1 answer

How can I determing the ratio of Cyrillic words to Latin words with R?

I have a text that contains both Cyrillic and Latin characters and I'm trying to determine the ratio of Cyrillic to Latin words. I tried using the Unicode package but couldn't find anything there for counting the different types of words. Is there a…
0
votes
1 answer

convert Unicode to cyrillic

I have lists with Unicode: words [u'\xd1', u'\xd0\xb0', u'\xd0\xb8', u'\u043e', u'\xd1\x81', u'-', u'\xd0\xb2', u'\u0438', u'\u0441', u'\xd0\xb8\xd1', u'\xd1\x83', u'\u0432', u'\u043a', u'\xd0\xba', u'\xd0\xbf\xd0\xbe', u'|', u'search',…
Petr Petrov
  • 4,090
  • 10
  • 31
  • 68
0
votes
0 answers

Display latin/spanish language in python (Character encoding)

I am working on moving text from a csv file to oracle database . I have built the python script for this. There is a field in csv which is in spanish . I know there are 100's of article in stack overflow . I have been breaking my head for last 4…
gowtham Y.R
  • 111
  • 1
  • 2
  • 10
0
votes
2 answers

How to convert chararray to datetime with milliseconds in pig latin

I wish to convert following value which is a chararray in pig 2016-05-11 23:59:57.628197 to 2016-05-11T23:59:57.628-05:00 How can I do it ? Following is what I tried considering alias 'a2' contains list of datetime values in chararray in the…
nitinr708
  • 1,393
  • 2
  • 19
  • 29
0
votes
3 answers

Pig Latin Translator won’t write results?

I’m trying to write a pig latin translator, but my webpage keeps displaying undefined, and it can’t read from the textarea. The html looks okay, but the text from the textarea that the end user needs inputs is not displayed correctly. I tried…
phriol
  • 101
  • 1
  • 1
  • 7