由买买提看人间百态

topics

全部话题 - 话题: coord
1 2 下页 末页 (共2页)
P*****D
发帖数: 141
1
【 以下文字转载自 Postdoc 讨论区 】
发信人: ProbeID (ProbeID), 信区: Postdoc
标 题: 转行专业选择 Medical Statistics vs Clinical Research Coord (转载)
发信站: BBS 未名空间站 (Tue Jan 28 17:40:45 2014, 美东)
发信人: ProbeID (ProbeID), 信区: Biology
标 题: 转行专业选择 Medical Statistics vs Clinical Research Coordinator
发信站: BBS 未名空间站 (Tue Jan 28 17:39:07 2014, 美东)
我们学校的两个MS专业,都是1年半读完。
MS in Medical Statistics 是在 Department of Biostatistics
MS in Clinical Research Coordinator 是在School of Nurse
Clinical Research Coordinator只有周五有课,感觉比较简单,合适part... 阅读全帖
P*****D
发帖数: 141
2
【 以下文字转载自 Postdoc 讨论区 】
发信人: ProbeID (ProbeID), 信区: Postdoc
标 题: 转行专业选择 Medical Statistics vs Clinical Research Coord (转载)
发信站: BBS 未名空间站 (Tue Jan 28 17:40:45 2014, 美东)
发信人: ProbeID (ProbeID), 信区: Biology
标 题: 转行专业选择 Medical Statistics vs Clinical Research Coordinator
发信站: BBS 未名空间站 (Tue Jan 28 17:39:07 2014, 美东)
我们学校的两个MS专业,都是1年半读完。
MS in Medical Statistics 是在 Department of Biostatistics
MS in Clinical Research Coordinator 是在School of Nurse
Clinical Research Coordinator只有周五有课,感觉比较简单,合适part... 阅读全帖
k*****n
发帖数: 417
3
【 以下文字转载自 Chemistry 讨论区 】
发信人: kinston (stone king), 信区: Chemistry
标 题: Coord Chem Rev和AM都出了北大专刊
发信站: BBS 未名空间站 (Wed Mar 31 22:38:08 2010, 美东)
国校威武啊
http://www.sciencedirect.com/science/journal/00108545
http://www3.interscience.wiley.com/journal/123333573/issue
To mark the centennial anniversary of chemical education and research at PKU
, this Special Issue gives an overview of the materials science work being
carried out at the College of Chemistry and Molecular Engineering. Thirteen
papers sp
l******s
发帖数: 3045
4
来自主题: JobHunting版 - 问一道Uber的电面题
像word ladder ii类似的一开始预处理所有近似点的做法,建一个大的依赖map先。
C#测试了几个,单连通图的,多独立连通图的正面反面用例,都通过了。
//directions = {{"A", "N", "C"}, {"B", "NE", "C"}, {"C", "NE", "D"}, {"A", "
S", "D"}, {"B", "W", "A"}}
// AB
// C
// D
// A <- false
private static bool validDirections(IList> directions)
{
int[,] depend = new int[26, 8]; //8 directions 0:N; 1:NE; 2:E; 3:SE; 4:S
; 5:SW; 6:W; 7:NW
for (int i = 0; i < depend.GetLength(0); i++)
for (int j = 0; j < depend.GetLength(1); j++)
de... 阅读全帖
c*******9
发帖数: 9032
5
来自主题: Programming版 - 围棋规则haskell表示
http://homepages.cwi.nl/~tromp/go/Go.hs
{-# LANGUAGE ScopedTypeVariables #-}
module Go where
import Data.Ix
import Data.List
import Data.Array
import Control.Monad
import Control.Monad.State
data Player = Black | White deriving (Eq, Enum, Show)
data Color = Empty | Stone Player deriving (Eq, Show)
newtype Position p = Position (Array p Color) deriving (Eq)
color :: (Point p) => Position p -> p -> Color
color (Position pos) p = pos!p
class (Show p, Ix p) => Point p where
pointBounds :: (p,p)
... 阅读全帖
o********r
发帖数: 79
6
来自主题: JobHunting版 - google面经(挂了)
不要吵了。
我按beanbun的思路写了一遍,指教一下
typedef pair COORD;
void extend(COORD cur,
vector >& visited,
vector > matrix,
queue& current,
queue& next )
{
vector shift;
shift.push_back(make_pair(0,-1));
shift.push_back(make_pair(0,1));
shift.push_back(make_pair(1,0));
const int m = matrix.size();
const int n = matrix[0].size();
for(const auto s:shift)
... 阅读全帖
c**********e
发帖数: 2007
7
来自主题: Programming版 - C++ Q02:
class coord {
int x, y;
public:
coord(int i, int j) {x=i; y=j;}
operator int() { return x*y; }
};
int main() {
coord o1(2,3);
int i, j;
i=o1;
j=5;
return 0;
}
a. There is an error because coord does not have an overloaded assignment
operator that returns an int.
b. There is an error because coord does not have an overloaded assignment
operator that returns an int.
c. The final value of i will be 6.
d. There is an error because the overloaded operator must have a return type
.
c*********e
发帖数: 16335
8
这个简单。以前做过把一世界地图的每个国家分割开,用map.比如
Planets

Sun
Mercury
Venus
y**b
发帖数: 10166
9
来自主题: Software版 - 有没有这样的等值线软件?
能根据三维空间的数据,如下面四列数据来画空间等值线的软件?
x-coord y-coord z-coord temparature
当然,x,y,z坐标是在一个比较规则的空间内。
b******n
发帖数: 823
10
来自主题: JobHunting版 - CareerCup 上一道老题
Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
that are of distance less than x units long.
Eg. 
Let x = 1; 
Given (0,0), (0,1), (1, 2), (4,6);
Return
1 -> (0,0), (0,1)
有没有sub O(n^2)的解法?
z**********g
发帖数: 209
11
来自主题: JobHunting版 - 问一道google题(from careercup)
Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
that are of distance less than x units long.
Let x = 1;
Given (0,0), (0,1), (1, 2), (4,6);
Return 1 -> (0,0), (0,1)
brute force就是n^2了,carerrcup上讨论的结果就是这个题和 closest pair 不一样
,但是没什么结果
l*********y
发帖数: 142
12
来自主题: JobHunting版 - 问一个小于X距离的问题
Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
that are of distance less than x units long.
Eg. 
Let x = 1; 
Given (0,0), (0,1), (1, 2), (4,6);
Return
1 -> (0,0), (0,1)
brute force n^2.
有人有更好的解法吗?
谢谢!
t**********p
发帖数: 2672
13
来自主题: LosAngeles版 - 有没有人想去 Griffith Park?
Tonight Sierra Club has two evening hikes, I guess I am going to join them.
http://angeles.sierraclub.org/outingsDB/index.aspx?SearchType=TOD
12/01/10 Griffith Park Evening Hikes Rating: O
Range: slow to strenuous. Leashed, well-mannered dogs welcome at the
discretion of each leader. Meets 7 pm every Tue, Wed, Thu upper merry-go-
round parking lot #2. Bring waiver card (or come early for paperwork),
optional flashlight.
Leaders: Ldrs, Jeff Brown, Angela Colicchio, Daniel Kinzek, Carl... 阅读全帖
Z**S
发帖数: 1211
14
来自主题: Military2版 - 转: 中国反舰弹道导弹作战过程
No. He is from Taiwan. The very fact that several military satellites
can be sent up a few days before the conflict to to locate the carrier
gives him nightmares. This is not high tech at
all now a days. China has shown the ability to send low-altitude
satellites, and each one covers wider areas than he claims in each
scan because the camera swings. One can image a scheme where
the carriers are located a few weeks before conflicts starts, and all
the satellites need to do is to update the coord
Z******0
发帖数: 48
15
来自主题: Classified版 - Market Research Analyst (Jamaica, NY)
Kanglida Int’l Inc. seeks Market Research Analyst (Jamaica, NY) to collect
& analyze data on int’l shipping rates, trends & regs. Report to mngmt w.
info on current market, competitors, & assist w. pricing of services. Inform
US & Asia offices w. updated shipping policies. Coord marketing activities
& liaise w. clients. Reqs: Masters in finance concentration & Mandarin
Chinese fluency. Min. of 6 mo. exp in market research reqd. Resumes to:
o****[email protected]
f*******e
发帖数: 1161
16
来自主题: JobHunting版 - 问一道google题(from careercup)
好像是可以先x(y)排序,大约类似一个sweep的算法,是n log n复杂度。有个论文讲这
个,也没读明白。

coords
K******g
发帖数: 1870
17
来自主题: JobHunting版 - 问一道google题(from careercup)
不明白,brute-force怎么回事N^2呢,我怎么觉得是N^N?

coords
m*********u
发帖数: 1491
18
转行?可别再走弯路 -----》 数据分析师是最佳选择。
无论Medical 还是 Clinical 都会有您一席之地
且不限于医药。。。。。放眼过去,市场辽阔!
现在是大数据的年代
h******s
发帖数: 3420
19
Clinical research coordinator 就算了吧,我见过的都是老美,nurse 出身。
P*****D
发帖数: 141
20
Data analyst,查了一下,好像不错。以前都没听说过,这个专业我们学校没有。
有on line的课程,
http://www.online.colostate.edu/certificates/data-analysis/
好像跟statistics挺像的,请问你知道那些学校这个专业比较好? 这个专业真的比
statistics好吗?
十分感谢你!
Z******0
发帖数: 48
21
来自主题: JobMarket版 - Market Research Analyst (Jamaica, NY)
Kanglida Int’l Inc. seeks Market Research Analyst (Jamaica, NY) to collect
& analyze data on int’l shipping rates, trends & regs. Report to mngmt w.
info on current market, competitors, & assist w. pricing of services. Inform
US & Asia offices w. updated shipping policies. Coord marketing activities
& liaise w. clients. Reqs: Masters in finance concentration & Mandarin
Chinese fluency. Min. of 6 mo. exp in market research reqd. Resumes to:
o****[email protected]
W***1
发帖数: 12
22
不错的背景,找了多长时间的工作就放弃了?
P*****D
发帖数: 141
23
1年前开始,中间耽误了很久,其实真正找就3,4个月吧。主要是最近申请Clinical
medical genetics fellow 面试没过,一下子人就depressed了,先放弃转行了。
S*******t
发帖数: 2831
24
GOOGLE到了,自问自答一下
If you pre-pay a third party, whether it be online or offline, you do not
earn Starpoints or stay credit or credit towards any promotions we may be
running. Known web sites to watch out for are hotels.com, site59.com,
priceline.com, and hotwire.com. Also any pre-paid wholesaler rates at
expedia.com and travelocity.com will be ineligible, though there are plenty
of rates at both these websites that are eligible.
Hope that helps.
Sincerely,
William R. Sanders
Customer Service Coord
P*****D
发帖数: 141
25
【 以下文字转载自 Biology 讨论区 】
发信人: ProbeID (ProbeID), 信区: Biology
标 题: 转行专业选择 Medical Statistics vs Clinical Research Coordinator
发信站: BBS 未名空间站 (Tue Jan 28 17:39:07 2014, 美东)
我们学校的两个MS专业,都是1年半读完。
MS in Medical Statistics 是在 Department of Biostatistics
MS in Clinical Research Coordinator 是在School of Nurse
Clinical Research Coordinator只有周五有课,感觉比较简单,合适part-time。
Medical Statistics 要求比较高,要先修本科的课。
当然最重要的是,那个更好找到工作。
已经错误读完不错学校生物PhD,4年Postdoc,走不下去,人生最黑暗的时候,这一步
实在不能在错了!
谢谢大家!
f*********g
发帖数: 958
26
有这么好的事情!一年半就可修完吗?
感觉两个都好找工作。
但显然是Medical Statistics有更宽广的前景和个人掌控度,主要与数据打交道。
Clinical Research Coordinator也有不少工作机会,似乎有点侧重在与人事协调、文
件撰写与管理等等的事务。
两个一起修可行吗?
入学要什么条件?GRE之类的需要吗?
分享一下资源行吗?
P*****D
发帖数: 141
27
有这里的PhD就不用GRE了,要一些本科的数学课。 学费很贵的,修两个很疯狂吧。
f*********g
发帖数: 958
28
那就Medical Statistics 呗。
多贵呀?
p********3
发帖数: 5750
29
来自主题: Minnesota版 - 养狗的给推荐个dog park吧
嗯是的, Greyhound Puppy很少有卖的。不过也有,看你需要什么,你看这个网站,一下Link全部是Twin Cities的Greyhound的Puppy.
http://www.petfinder.com/pet-search?N=21&Ne=1&Nf=coords%7CGCGT+
我就是在这个网站一下子就找到了我的梦中情人的。
r********9
发帖数: 10694
30
来自主题: Texas版 - 热烈庆祝周末到了
Time: 04/12/2014 (coming Sat)
Hiking Trail: Lone Star Trail at Lake Conroe (Total will be around 9-12
miles)
Plan:
1. 8:45 am gather at Chinese Lutheran Church (西南国语教会)/12143 Bellaire
Blvd 77072).
2. 9:00 am heading for forest
3. 10:30 am gathering at trail head TH 6.( If you want to go to forest
directly, here is the coords (N30 31.685 W95 37.796). We will go from TH6 to
north, by Lake Conroe
4. 10:45 am - 4: 45 pm hiking in the forest
5. We will come back to Ch... 阅读全帖
l*****l
发帖数: 1525
31
来自主题: Utah版 - @Monument Valley
http://wikimapia.org/8890256/The-road-where-Forrest-Gump-decide
try the coord on the top right corner
l*****8
发帖数: 16949
32
不是。蛋鸡之下,如果按资格排,应该是
Moore (OC), Meeks (DC, Black), Special Team Coord (搞不清是啥鸟人,反正被
fire了),Mudd(OL Coach,白人,现在头衔上加了个senior).在下来Defense coach里
面可能还有人,但估计蛋鸡不管选(DC都没上底下的凭啥上?). Offense Coach里再下
来估计就轮到Caldwell了。
a****y
发帖数: 2548
33
各个队情况不同,coach是总管,一般也会管进攻或是防守的一个,剩下的一个归coord
inator。
当然也有的队,进攻防守都让coordinator管,比如扣子。
l*****8
发帖数: 16949
34
扣子的进攻由队员自己负责,用不着OC.

coord
l******e
发帖数: 12192
35
爱铁匠也是

coord
b**j
发帖数: 20742
36
http://www.nfl.com/news/story/09000d5d828b6d64/article/successf
Beware the Cincinnati Bengals after this NFL draft
By Gregg Rosenthal
Around The League editor
Published: April 28, 2012 at 03:29 p.m.
Updated: April 28, 2012 at 04:03 p.m.
A lot of fans and analysts expected the Cincinnati Bengals to take a step ba
ck after their surprising 2011 campaign and subsequent playoff flameout. The
events of draft weekend should make them think again.
It's hard not to love what the Bengals ... 阅读全帖
qn
发帖数: 2116
37
来自主题: Football版 - 我空组成空前强大教练团
单昆这是整哪样? 19个人了,要用教练拍死对手吗?
Dan Quinn Head Coach
Richard Smith Defensive Coordinator
Raheem Morris Asst. Head Coach/Def. Passing Game Coord.
Bryan Cox Defensive Line Coach
Jeff Ulbrich Linebackers Coach
Chad Walker Def. Assistant/Defensive Backs
Doug Mallory Def. Assistant/Linebackers
Marquand Manuel Secondary/Senior Def. Assistant
Kyle Shanahan Offensive Coordinator
Bobby Turner Running Backs Coach
Chris Morgan Offensive Line
Matt LaFleur Quarterbacks
Wade ... 阅读全帖
k**********i
发帖数: 8706
38
来自主题: GunsAndGears版 - 马里兰枪友一起打靶去?
明天(周日)在Frederick Cresap Rifle Club,早上10点开始
6420 Plant Road
Frederick, Maryland, 21701
GPS Coord: 39.41113,-77.357184
http://www.cresaprifleclub.com/facilities.php#hours
现在有四个人了,欢迎更多人一起来聚一聚
k**********i
发帖数: 8706
39
来自主题: GunsAndGears版 - 8/22星期天cresap
6420 Plant Road
Frederick, Maryland, 21701
GPS Coord: 39.41113,-77.357184
http://www.cresaprifleclub.com/contactus.php
w***y
发帖数: 1313
40
来自主题: Outdoors版 - 昨晚做了个梦
哈哈
更着急的是到了岩壁拿出绳子,结果谁都没带快挂/webbing/coord/sling
发生过一次:(
l******n
发帖数: 1683
41
牛呀, cong!

PKU
Thirteen
h*********o
发帖数: 19006
42
呵呵

PKU
Thirteen
p*******y
发帖数: 18288
43
听起来很牛的样子,
科普下,有多牛

PKU
Thirteen
f*****x
发帖数: 10
44
Do you update the entire figure in each calling of button press event
handler? If so, that's probably the reason. One solution is to get the
handle of the line (you already did that), and each time use
set(line_handle, 'xdata', x, 'ydata', y)
to change the coordinates of the line, where x and y are the new coord.
BTW, if you post matlab related questions in EE or computation, you'll
probably get more responses.
T*******n
发帖数: 493
45
来自主题: TeX版 - no bounding box怎么办?
Open the EPS file in an ASCII text editor. Is there a line like
%%BoundingBox: 0 0 300 200
near the beginning of the file (the numbers are the coords of the bbox)?

bounding
i*****m
发帖数: 11
46
来自主题: Chemistry版 - 求文献
Coord. Chem. Rev. 84, 85 (1988). 谢谢.
k*****n
发帖数: 417
47
来自主题: Chemistry版 - Coord Chem Rev和AM都出了北大专刊
国校威武啊
http://www.sciencedirect.com/science/journal/00108545
http://www3.interscience.wiley.com/journal/123333573/issue
To mark the centennial anniversary of chemical education and research at PKU
, this Special Issue gives an overview of the materials science work being
carried out at the College of Chemistry and Molecular Engineering. Thirteen
papers specially selected by Guest Editors Zhongfan Liu, Kai Wu, and Song
Gao give an in-depth look at research in three broad fields: controlled
prepara
a***n
发帖数: 1500
48
来自主题: Chemistry版 - Coord Chem Rev和AM都出了北大专刊
co-威武

PKU
Thirteen
S*****n
发帖数: 6055
49
来自主题: Chemistry版 - Coord Chem Rev和AM都出了北大专刊
看来在AM眼里北大排名中国第四,位居化学所、物理所和中科大之后,呵呵

PKU
Thirteen
j***h
发帖数: 18
50
来自主题: Chemistry版 - Coord Chem Rev和AM都出了北大专刊
哪儿看出来在那三个后面的?
1 2 下页 末页 (共2页)