Does this help?
revExecuteSQL tconID, "SET NAMES 'utf8'"
Search found 9 matches
- Mon Oct 25, 2010 6:15 am
- Forum: Databases
- Topic: Unicode and mySQL
- Replies: 14
- Views: 23225
- Fri Jul 09, 2010 8:44 am
- Forum: Off-Topic
- Topic: R programming language
- Replies: 3
- Views: 8370
Re: R programming language
To answer my own question
xvar=c(10,20,30,40,50,44,55,66,33,44)
mean(xvar)
yvar=c(2,2,3,8,9,3,4,8,6,7)
mean(yvar)
#plot a regression line
png(file="myplot.png")
#par(mfrow=c(2,2)) #put 4 graphs in one frame
plot(xvar,yvar)
abline(lm(yvar~xvar))
dev.off()
q()
and then in Rev:
import paint from ...
xvar=c(10,20,30,40,50,44,55,66,33,44)
mean(xvar)
yvar=c(2,2,3,8,9,3,4,8,6,7)
mean(yvar)
#plot a regression line
png(file="myplot.png")
#par(mfrow=c(2,2)) #put 4 graphs in one frame
plot(xvar,yvar)
abline(lm(yvar~xvar))
dev.off()
q()
and then in Rev:
import paint from ...
- Fri Jul 09, 2010 6:00 am
- Forum: Off-Topic
- Topic: R programming language
- Replies: 3
- Views: 8370
R programming language
Has anyone played with a Rev interface for the R programming environment--especially for doing statistics?
How about displaying R graphics in Rev?
It is trivial to put something like this in a field:
r --vanilla
license()
demo(lm.glm)
xvar=c(10,20,30,40,50)
xvar
demo(graphics)
q()
and then run ...
How about displaying R graphics in Rev?
It is trivial to put something like this in a field:
r --vanilla
license()
demo(lm.glm)
xvar=c(10,20,30,40,50)
xvar
demo(graphics)
q()
and then run ...
- Fri Feb 26, 2010 3:39 am
- Forum: Feature Proposals
- Topic: gauges
- Replies: 1
- Views: 2331
gauges
I was just looking at componentArt
http://silverlight.componentart.com/#Ra ... reFeatures
and though, "These gauges could be rendered as fancy scrollbars in Rev pretty easily."
How about it?
http://silverlight.componentart.com/#Ra ... reFeatures
and though, "These gauges could be rendered as fancy scrollbars in Rev pretty easily."
How about it?
- Sat Nov 21, 2009 9:53 am
- Forum: Databases
- Topic: connection refused
- Replies: 2
- Views: 4041
Re: connection refused
Sorry. Figured it out myself. My IP number had changed after a power failure and was not listed under Remote Access Hosts in the cPanel.
- Sat Nov 21, 2009 9:24 am
- Forum: Databases
- Topic: connection refused
- Replies: 2
- Views: 4041
connection refused
I am starting to play with rev and mysql on onRev. I created a tiny database from work (a university) and was able to add data using Navicat. I then created a small stack with a data table and using the Query Builder was able to display the data.
When I tried to use the same stack at home I get a ...
When I tried to use the same stack at home I get a ...
- Thu Feb 05, 2009 9:40 am
- Forum: Talking LiveCode
- Topic: EUC-JP coding
- Replies: 1
- Views: 3005
EUC-JP coding
Any suggestions on how to display (or convert and display) EUC-JP characters?
- Sat Dec 06, 2008 3:23 am
- Forum: Internet
- Topic: DHCP socket
- Replies: 4
- Views: 5995
dhcp socket
i have confirmed that opening a socket to another Mac on the same Airport (using 10.1.0.xx) works.
If you know the dhcp address of a computer on a different Airport with a different IP number, i was wondering if there wasn't some way of appending the dhcp address to the IP address (like 163.143.123 ...
If you know the dhcp address of a computer on a different Airport with a different IP number, i was wondering if there wasn't some way of appending the dhcp address to the IP address (like 163.143.123 ...
- Fri Dec 05, 2008 4:34 am
- Forum: Internet
- Topic: DHCP socket
- Replies: 4
- Views: 5995
DHCP socket
is it possible to open a socket to a DHCP address on *another* LAN?